linux-rt_6_1: 6.1.54-rt15 -> 6.1.59-rt16

This commit is contained in:
K900
2023-10-25 13:50:09 +03:00
parent 0e8345f9a3
commit dea5edb1fe

View File

@@ -6,7 +6,7 @@
, ... } @ args:
let
version = "6.1.54-rt15"; # updated by ./update-rt.sh
version = "6.1.59-rt16"; # 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/v6.x/linux-${kversion}.tar.xz";
sha256 = "09sfrq2l8f777mx2n9mhb6bgz1064bl04921byqnmk87si31w653";
sha256 = "1860r1aan258yi2jq68bp1kdbcyy7ygc7d8g54wnc0vmqqj7fzv2";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "0ihdid1ihg26kjini66j87vh4220gl8xm9dai7zignha2zh238kh";
sha256 = "1cmgw6a8zlj89172mp85lxaksz1pvc155mj2fq59l1ry35gwb5q7";
};
}; in [ rt-patch ] ++ kernelPatches;