linux-rt_5_15: 5.15.93-rt58 -> 5.15.94-rt59

This commit is contained in:
Maximilian Bosch 2023-02-22 15:31:38 +01:00
parent 09da1ce190
commit 74a939df90
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A

View File

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "5.15.93-rt58"; # updated by ./update-rt.sh
version = "5.15.94-rt59"; # updated by ./update-rt.sh
branch = lib.versions.majorMinor version;
kversion = builtins.elemAt (lib.splitString "-" version) 0;
in buildLinux (args // {
@ -18,14 +18,14 @@ in buildLinux (args // {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
sha256 = "1baxkkd572110p95ah1wv0b4i2hfbkf8vyncb08y3w0bd7r29vg7";
sha256 = "0wjsqvhp0jnisypb8yw6dncyp5k7zxbhjivh7jqivpsdwvdp14ns";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "10xx70qf6nph3223yh6sc5jcyy938qrfdilli2a4zzhp0ibgp8bz";
sha256 = "12lv1cywnlylb908bwy76ala94j1j5klrgv71l9ihf4vvdpj2nxi";
};
}; in [ rt-patch ] ++ kernelPatches;