tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux-rt_5_10: 5.10.180-rt89 -> 5.10.194-rt95
Alyssa Ross
2 years ago
d928e497
e4301a7b
+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.180-rt89"; # updated by ./update-rt.sh
10
branch = lib.versions.majorMinor version;
11
kversion = builtins.elemAt (lib.splitString "-" version) 0;
12
in buildLinux (args // {
···
17
18
src = fetchurl {
19
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
20
-
sha256 = "0a8cicvcyl5w4vi7gxhgd59ny44gj9cbv4z5pnwn9jgny55rm0ys";
21
};
22
23
kernelPatches = let rt-patch = {
24
name = "rt";
25
patch = fetchurl {
26
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
27
-
sha256 = "00m6psnjam26x70f8wpssvjp6v49dyllp356fpfbhjqmj7y142bm";
28
};
29
}; in [ rt-patch ] ++ kernelPatches;
30
···
6
, ... } @ args:
7
8
let
9
+
version = "5.10.194-rt95"; # updated by ./update-rt.sh
10
branch = lib.versions.majorMinor version;
11
kversion = builtins.elemAt (lib.splitString "-" version) 0;
12
in buildLinux (args // {
···
17
18
src = fetchurl {
19
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
20
+
sha256 = "15fr7krhpmqz0xqjg78m2xvfllbni3xh8xyhxh9ni31ppd3mw394";
21
};
22
23
kernelPatches = let rt-patch = {
24
name = "rt";
25
patch = fetchurl {
26
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
27
+
sha256 = "02p01a9jpv92v0dfg6hj90wcrgy3sqjpaadrw44mnsqk4q5ndh70";
28
};
29
}; in [ rt-patch ] ++ kernelPatches;
30