tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
linux-rt_5_10: 5.10.218-rt110 -> 5.10.219-rt111
K900
2 years ago
5eae75ed
83f35364
+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
6
, ... } @ args:
7
7
8
8
let
9
9
-
version = "5.10.218-rt110"; # updated by ./update-rt.sh
9
9
+
version = "5.10.219-rt111"; # 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 = "1mmj5hwm5i16gc1y4nzr1cs882vi6vrihrincdcivv63x11v4dlw";
21
21
+
sha256 = "0c6dhi6w8likvyyzw7wj2fqhz8nhv760kkic8bk66r1prhakzdwk";
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 = "0zam7hlcrphxv53jcza7sw0lv8a9mz15cl35adwb2rd2y1x9nhad";
28
28
+
sha256 = "0imnwj8210cjvmr90yhcc0nn80s3wlc5n2cdrnbg72lm4dny2qpn";
29
29
};
30
30
}; in [ rt-patch ] ++ kernelPatches;
31
31