linux-rt_5_4: 5.4.209-rt77 -> 5.4.221-rt79

This commit is contained in:
Bernardo Meurer 2022-11-10 18:16:54 -05:00
parent 79c0a328d1
commit f9286fe0e9
No known key found for this signature in database

View File

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "5.4.209-rt77"; # updated by ./update-rt.sh
version = "5.4.221-rt79"; # 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 = "1kdnz99k7zspzaxqaxahbf6hncigy4cvjlb79jsy7a95qxxr31qf";
sha256 = "02nz9534998s922fdb0kpb09flgjmc7p78x0ypfxrd6pzv0pzcr7";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "1wh5m7ychgnn33yg7gg9nlwcmmm72dixvdf77m764hs90xl8c9ig";
sha256 = "0zcakr41m1n683pwcm6d698nwgg7jyr7n8c63jmqh0959xxb2axy";
};
}; in [ rt-patch ] ++ kernelPatches;