linux-rt_5_4: 5.4.248-rt83 -> 5.4.254-rt85

This commit is contained in:
Maximilian Bosch 2023-08-31 19:13:06 +02:00
parent f5f7c92938
commit 189b953e27
No known key found for this signature in database
GPG key ID: 9A6EEA275CA5BE0A

View file

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "5.4.248-rt83"; # updated by ./update-rt.sh
version = "5.4.254-rt85"; # updated by ./update-rt.sh
branch = lib.versions.majorMinor version;
kversion = builtins.elemAt (lib.splitString "-" version) 0;
in buildLinux (args // {
@ -14,14 +14,14 @@ in buildLinux (args // {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
sha256 = "0d9yn51rg59k39h0w6wmvjqz9n7najm9x8yb79rparbcwwrd3gis";
sha256 = "1iyrm2xql15ifhy2b939ywrrc44yd41b79sjjim4vqxmc6lqsq2i";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "1rr4vnynxwmlgnm5xq1m0xhykh72lkv2lsginbh5nk60k3qwizh2";
sha256 = "0vq5lrqqy7yspznbbkla2cjakz7w1n8qvg31a856qs6abynwrw6x";
};
}; in [ rt-patch ] ++ kernelPatches;