linux-rt_6_6: 6.6.52-rt43 -> 6.6.58-rt45

(cherry picked from commit 040a0dae71)
This commit is contained in:
Maximilian Bosch 2024-11-08 19:51:14 +01:00 committed by github-actions[bot]
parent 4129264892
commit 4658556b59

View File

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "6.6.52-rt43"; # updated by ./update-rt.sh
version = "6.6.58-rt45"; # 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 = "1f5l6y7abscm01dr740fzvq8r756ar854n0i299smm4rhcsap48m";
sha256 = "1nwrd017l5m4w12yrcf31y3g0l9xqm5b0fzcqdgan3ypi3jq3pz7";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "0g33n9idc3lhbj5z637zm3bgqh601a05cl1s8ji8zbnfh971jcgh";
sha256 = "0npvydlk2z33c5xqhg31xky045s5rvjnvfqml30nycmzbsmqjc7c";
};
}; in [ rt-patch ] ++ kernelPatches;