tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux-rt_5_10: 5.10.73-rt54 -> 5.10.78-rt55
TredwellGit
4 years ago
38d1f15f
a21aec9d
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-rt-5.10.nix
+3
-3
pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
···
6
, ... } @ args:
7
8
let
9
-
version = "5.10.73-rt54"; # updated by ./update-rt.sh
10
branch = lib.versions.majorMinor version;
11
kversion = builtins.elemAt (lib.splitString "-" version) 0;
12
in buildLinux (args // {
···
18
19
src = fetchurl {
20
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
21
-
sha256 = "0xhf0g5pra27hnavpy0y3mn05m5hqn5rd3d6fx0a3vr35c1jicpd";
22
};
23
24
kernelPatches = let rt-patch = {
25
name = "rt";
26
patch = fetchurl {
27
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
28
-
sha256 = "0szqm9f939p9z701i5hj881nf5bhfa0a6037bbcz974y0x8g9nmk";
29
};
30
}; in [ rt-patch ] ++ kernelPatches;
31
···
6
, ... } @ args:
7
8
let
9
+
version = "5.10.78-rt55"; # updated by ./update-rt.sh
10
branch = lib.versions.majorMinor version;
11
kversion = builtins.elemAt (lib.splitString "-" version) 0;
12
in buildLinux (args // {
···
18
19
src = fetchurl {
20
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
21
+
sha256 = "03q5lrv8gr9hnm7984pxi9kwsvxrn21qwykj60amisi2wac6r05y";
22
};
23
24
kernelPatches = let rt-patch = {
25
name = "rt";
26
patch = fetchurl {
27
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
28
+
sha256 = "1wcw682r238qi5jgn5zk9m6j2506p9ypfax13bzhjfyjzz3h98kp";
29
};
30
}; in [ rt-patch ] ++ kernelPatches;
31