linux-rt_5_10: 5.10.215-rt107 -> 5.10.216-rt108

(cherry picked from commit 91a191072e)
This commit is contained in:
K900
2024-05-17 13:44:50 +03:00
committed by github-actions[bot]
parent 8d44dbd679
commit 0132648b10

View File

@@ -6,7 +6,7 @@
, ... } @ args:
let
version = "5.10.215-rt107"; # updated by ./update-rt.sh
version = "5.10.216-rt108"; # updated by ./update-rt.sh
branch = lib.versions.majorMinor version;
kversion = builtins.elemAt (lib.splitString "-" version) 0;
in buildLinux (args // {
@@ -17,14 +17,14 @@ in buildLinux (args // {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
sha256 = "1af6h86flx96pszg006agpak2f9dkk2jqaazfykd7aafqdcs3747";
sha256 = "0lg1zfb9y4ps86q85mlnyalb3s90zix003z62jb9bw139f65h473";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "0lnnpnfmypafzfzhcmaxqqc18nna4fr236v6hrcyabnxmxam79xj";
sha256 = "0p0qmyz3g7fqlz4f638dlcp37az8lpq5yqw2fy5zqqs3qagy018j";
};
}; in [ rt-patch ] ++ kernelPatches;