linux-rt_6_6: 6.6.35-rt34 -> 6.6.36-rt35

(cherry picked from commit 4692f201cd)
This commit is contained in:
K900 2024-07-05 17:30:29 +03:00 committed by github-actions[bot]
parent 30e0426f16
commit 91745c5bfd

View File

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "6.6.35-rt34"; # updated by ./update-rt.sh
version = "6.6.36-rt35"; # 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 = "17nxymy3r9q45cfzc9rqp937m37zr1b8fjn1m0x0dv8jhxrfxqzw";
sha256 = "1mfdw2prjb54r19y22sm37q8spnk6lyk162ima7gps1pnwl6hrxr";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "0rijfk9n3fdrwg61ih2x95w4ffjs037hfjv3bza3xb7j04y7hxgy";
sha256 = "154wfx6aa9yxkavf05vka8spvx99pa4svq02b6kb1zfrq6r93bq6";
};
}; in [ rt-patch ] ++ kernelPatches;