linux-rt_5_10: 5.10.153-rt76 -> 5.10.158-rt77

This commit is contained in:
Maximilian Bosch 2022-12-16 17:59:23 +01:00
parent f3e1ec7eda
commit 0fd3622bbc
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A

View File

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "5.10.153-rt76"; # updated by ./update-rt.sh
version = "5.10.158-rt77"; # 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/v5.x/linux-${kversion}.tar.xz";
sha256 = "0qhn5xv0m6baip1my1gp4mrjc4j6d6nbxa701vpwllg4kx8y9wiw";
sha256 = "1rq7lyp41fydybs53rcdjhiy271arh95xch16s5s3jhhanxj82hy";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "12gf2nnnfcbmyp34xnns35qpnzsnwjilq2qs1xvq6m51gcnnzq7g";
sha256 = "1yl2add34ylsancly5dblxigljwrcxgs456cz7xlnpywrlfsir5m";
};
}; in [ rt-patch ] ++ kernelPatches;