linux-rt_5_4: 5.4.221-rt79 -> 5.4.230-rt80

This commit is contained in:
Maximilian Bosch 2023-02-22 15:31:51 +01:00
parent 74a939df90
commit 93a77dec9e
No known key found for this signature in database
GPG key ID: 9A6EEA275CA5BE0A

View file

@ -6,7 +6,7 @@
, ... } @ args:
let
version = "5.4.221-rt79"; # updated by ./update-rt.sh
version = "5.4.230-rt80"; # updated by ./update-rt.sh
branch = lib.versions.majorMinor version;
kversion = builtins.elemAt (lib.splitString "-" version) 0;
in buildLinux (args // {
@ -14,14 +14,14 @@ in buildLinux (args // {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
sha256 = "02nz9534998s922fdb0kpb09flgjmc7p78x0ypfxrd6pzv0pzcr7";
sha256 = "0bz6hfhsahymys2g9s4nzf862z0zfq4346577cpvf98hrhnd6kx7";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
sha256 = "0zcakr41m1n683pwcm6d698nwgg7jyr7n8c63jmqh0959xxb2axy";
sha256 = "19vcalg76vi66g3rk56ky873276is4r67sz2i4vympjq9bskrwrz";
};
}; in [ rt-patch ] ++ kernelPatches;