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_4: 5.4.271-rt89 -> 5.4.278-rt91
K900
2 years ago
3179815d
5eae75ed
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-rt-5.4.nix
+3
-3
pkgs/os-specific/linux/kernel/linux-rt-5.4.nix
···
6
, ... } @ args:
7
8
let
9
-
version = "5.4.271-rt89"; # updated by ./update-rt.sh
10
branch = lib.versions.majorMinor version;
11
kversion = builtins.elemAt (lib.splitString "-" version) 0;
12
in buildLinux (args // {
···
15
16
src = fetchurl {
17
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
18
-
sha256 = "0l2qv4xlhnry9crs90rkihsxyny6jz8kxw08bfad7nys9hrn3g6d";
19
};
20
21
kernelPatches = let rt-patch = {
22
name = "rt";
23
patch = fetchurl {
24
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
25
-
sha256 = "15k9jja5yd9zf5yhd7hhydwh4hksg2mybk66jhdjsryh4w9jav7z";
26
};
27
}; in [ rt-patch ] ++ kernelPatches;
28
···
6
, ... } @ args:
7
8
let
9
+
version = "5.4.278-rt91"; # updated by ./update-rt.sh
10
branch = lib.versions.majorMinor version;
11
kversion = builtins.elemAt (lib.splitString "-" version) 0;
12
in buildLinux (args // {
···
15
16
src = fetchurl {
17
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
18
+
sha256 = "1245zf7vk2fyprw9fspljqy9wlzma9bayri7xx2g8iam2430d875";
19
};
20
21
kernelPatches = let rt-patch = {
22
name = "rt";
23
patch = fetchurl {
24
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
25
+
sha256 = "0s1ars3d18jg55kpvk6q5b6rk66c74d2khd2mxzdm5ifgm47047k";
26
};
27
}; in [ rt-patch ] ++ kernelPatches;
28