linux-rt_6_1: 6.1.111-rt42 -> 6.1.112-rt43

This commit is contained in:
Maximilian Bosch 2024-11-08 19:51:00 +01:00
parent f919f99e9c
commit 0216aad174
No known key found for this signature in database

View File

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "6.1.111-rt42"; # updated by ./update-rt.sh
version = "6.1.112-rt43"; # updated by ./update-rt.sh
branch = lib.versions.majorMinor version;
kversion = builtins.elemAt (lib.splitString "-" version) 0;
in buildLinux (args // {
@ -19,14 +19,14 @@ in buildLinux (args // {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v6.x/linux-${kversion}.tar.xz";
sha256 = "1c7d49kppv8xgqlsrfm1286mnvz8vcnbqqh6zgfca2s13px9hwn4";
sha256 = "094z3wfcxqx2rbi072i5frshpy6rdvk39aahwm9nc07vc8sxxn4b";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "16yb962fkkvgppbx8glp5ph3h1jl2q1b4m2s8gsf3k9i9yim7v5c";
sha256 = "0qvil92xkbwmyrmj0zlg0ssg95ncscmr4ga4380903bqhhh74d6h";
};
}; in [ rt-patch ] ++ kernelPatches;