linux-rt_5_10: 5.10.140-rt73 -> 5.10.145-rt74

This commit is contained in:
Maximilian Bosch 2022-09-29 20:39:04 +02:00
parent a5c28a9c5e
commit 6b330d1541
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A

View File

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "5.10.140-rt73"; # updated by ./update-rt.sh
version = "5.10.145-rt74"; # 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 = "00v8mdbc8ndx29grfnlf49ifikqxnl25zn0243j3bgclvfyxipx4";
sha256 = "0qdcqmwvc70hfgj8hb8ccwmnvwl41dvdffqrmyg3cyblwprr0ngw";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "1abrxwxx3kfmbyabb1hhjpz1l7idrn2g14zx7qix7ds7n9f6dcgf";
sha256 = "16a2cnvn1azxsw1qjwbygkych0jzkfpmj0kx08jdz3fx3xbmqpr4";
};
}; in [ rt-patch ] ++ kernelPatches;