linux-rt_5_4: 5.4.82-rt45 -> 5.4.84-rt47

This commit is contained in:
Tim Steinbach 2020-12-22 14:36:53 -05:00
parent 8e3726f3c5
commit 96396f35b8
No known key found for this signature in database
GPG key ID: 1B40229F19262402

View file

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "5.4.82-rt45"; # updated by ./update-rt.sh
version = "5.4.84-rt47"; # 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 = "1byx163v83aw0ixphwz20znml2s2n3cy1kp89vgwbdiqxbj5hi7v";
sha256 = "058mhczv6whjwxn7jjh1c6n5zrqjdnvbl2mp7jkfrg6frpvgr189";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "0nh7d5b81br3cpljmn5n7lgn877h02aal95782hiflv7cmrb597r";
sha256 = "0nccxf9l9ycvb782f48zrbl59vi674qq7yjyaks97440pgyd1jg0";
};
}; in [ rt-patch ] ++ lib.remove rt-patch kernelPatches;