summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYurii Matsiuk <ymatsiuk@users.noreply.github.com>2021-06-07 20:11:04 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2021-06-08 18:26:33 +0000
commit6a671c3d4a8389d7b5c3da98bd5d4b42833ec4af (patch)
tree4451ea2b3273f476f4aeccc57e2e9a9978380594
parentlinux: 5.4.123 -> 5.4.124 (diff)
downloadnixpkgs-6a671c3d4a8389d7b5c3da98bd5d4b42833ec4af.tar.gz
linux-rt_5_10: 5.10.35-rt39 -> 5.10.41-rt42
(cherry picked from commit b42424bdd0946c167becd3ffa2d169d5e08877ed)
-rw-r--r--pkgs/os-specific/linux/kernel/linux-rt-5.10.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix b/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
index 90c0c4e29303..5567022edccb 100644
--- a/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
+++ b/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
@@ -6,7 +6,7 @@
, ... } @ args:
let
- version = "5.10.35-rt39"; # updated by ./update-rt.sh
+ version = "5.10.41-rt42"; # updated by ./update-rt.sh
branch = lib.versions.majorMinor version;
kversion = builtins.elemAt (lib.splitString "-" version) 0;
in buildLinux (args // {
@@ -18,14 +18,14 @@ in buildLinux (args // {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz";
- sha256 = "1zcqsjzqgcvlhkjwhzs6sxgbhzkfg898pbisivjqfymp8nfs2dxc";
+ sha256 = "0wb739q7dha8nxkd72x42k4in5nw633yw065ppwc8rq7x2fpa17n";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
- sha256 = "03gq9y111k4js4cc87yc9y7hyg1wxwbc1bjyjdvb4nrx2wqka79y";
+ sha256 = "1z8jgsq5fkg486xxawg4c4wk1l9xra7x1cfqaf4grhw0csbbx883";
};
}; in [ rt-patch ] ++ lib.remove rt-patch kernelPatches;