linux-rt_5_4: 5.4.66-rt38 -> 5.4.69-rt39

This commit is contained in:
Tim Steinbach 2020-10-06 09:41:30 -04:00
parent f26d6639f2
commit 2edeff88e3
No known key found for this signature in database
GPG key ID: 6538CB9266B06F31

View file

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "5.4.66-rt38"; # updated by ./update-rt.sh
version = "5.4.69-rt39"; # 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 = "1cnsrz21kcf0h7krpv9p1a7n59mybr5ii0jdi3yc3x3lcwvk06gz";
sha256 = "19vxsbwvfwyz1w6m7sp38d504w98zwjxaap4hfhh6wrrddqivcx8";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "1w0v5wl5fhxl5axd4701dljxhv9rywpgiix3yv7l6i3c5b8iw1zi";
sha256 = "0y01m4mx4wl0w6nnmb1h5r87i11zx6ndwk8p8d7pp7vykq79x6rn";
};
}; in [ rt-patch ] ++ lib.remove rt-patch kernelPatches;