linux-rt_5_10: 5.10.211-rt103 -> 5.10.213-rt105

This commit is contained in:
Alyssa Ross 2024-03-25 14:00:43 +01:00
parent c7a64c7213
commit 5139062705
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "5.10.211-rt103"; # updated by ./update-rt.sh
version = "5.10.213-rt105"; # updated by ./update-rt.sh
branch = lib.versions.majorMinor version;
kversion = builtins.elemAt (lib.splitString "-" version) 0;
in buildLinux (args // {
@ -17,14 +17,14 @@ in buildLinux (args // {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
sha256 = "1cir36s369fl6s46x16xnjg0wdlnkipsp2zhz11m9d3z205hly1s";
sha256 = "105df7w6m5a3fngi6ajqs5qblaq4lbxsgcppllrk7v1r68i31kw4";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "07br63p90gwmijxq8ad7iyi4d3fkm6jwwl2s2k1549bbaldchbk6";
sha256 = "1q5kz3mfvwb4fd5i2mbklsa6gifb8g3wbq0wi2478q097dvmb6gi";
};
}; in [ rt-patch ] ++ kernelPatches;