linux-rt_6_6: 6.6.23-rt28 -> 6.6.25-rt29

This commit is contained in:
K900 2024-04-10 18:11:29 +03:00
parent 550bbd4090
commit c044ba368c
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "6.6.23-rt28"; # updated by ./update-rt.sh
version = "6.6.25-rt29"; # 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 = "1fd824ia3ngy65c5qaaln7m66ca4p80bwlnvvk76pw4yrccx23r0";
sha256 = "0i0zvqlj02rm6wpbidji0rn9559vrpfc1b8gbfjk70lhhyz11llr";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "0l9509qnv333fwjlxkr46rb23dhxs43bzj6iisk1r2lq69jhmyx4";
sha256 = "15mb4zycv86yp1cbs5svgs3pnmh8jihjhf4jxc4h4ywlzglkb1za";
};
}; in [ rt-patch ] ++ kernelPatches;