tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux-rt_5_15: 5.15.129-rt67 -> 5.15.133-rt69
Alyssa Ross
2 years ago
a012fd2d
d928e497
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-rt-5.15.nix
+3
-3
pkgs/os-specific/linux/kernel/linux-rt-5.15.nix
···
6
6
, ... } @ args:
7
7
8
8
let
9
9
-
version = "5.15.129-rt67"; # updated by ./update-rt.sh
9
9
+
version = "5.15.133-rt69"; # updated by ./update-rt.sh
10
10
branch = lib.versions.majorMinor version;
11
11
kversion = builtins.elemAt (lib.splitString "-" version) 0;
12
12
in buildLinux (args // {
···
18
18
19
19
src = fetchurl {
20
20
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
21
21
-
sha256 = "0ribh1jalbnapfrjzjk5kqg6nypalkn5ayin5cwkwiziwiycj3km";
21
21
+
sha256 = "1paxzzcagc7s8i491zjny43rxhfamafyly438kj8hyw96iwmx17g";
22
22
};
23
23
24
24
kernelPatches = let rt-patch = {
25
25
name = "rt";
26
26
patch = fetchurl {
27
27
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
28
28
-
sha256 = "1qh2v8i2sa334mkfwx9k8jjvqpp21bj2wmvvdib8wfxbnjnj3vzy";
28
28
+
sha256 = "0iikbpb1wcf7fm18j230cd4p4cksr0k6041c8w0gvznws8mr3dww";
29
29
};
30
30
}; in [ rt-patch ] ++ kernelPatches;
31
31