summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-09-20 21:40:48 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2021-09-21 10:52:22 +0000
commit16e4fb1aad3bf82b4ee3029c5715dc89828ba019 (patch)
tree4a0d722ebc24cdbda17d832b9ec29871dbb8beb2
parentlinux: 5.14.5 -> 5.14.6 (diff)
downloadnixpkgs-16e4fb1aad3bf82b4ee3029c5715dc89828ba019.tar.gz
linux-rt_5_10: 5.10.59-rt52 -> 5.10.65-rt53
(cherry picked from commit 3e87ddbf57a85ca4f06f10f8579ed9c4a54768b0)
-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 a00e7ad33a91..7368f77c4d35 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.59-rt52"; # updated by ./update-rt.sh
+ version = "5.10.65-rt53"; # 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 = "107anv16khx055rpkvfd532rdcfg4ffbs7bhp45hdqi3bz0ssg1k";
+ sha256 = "0riyq1gdm18642fpnhpcw8hspcjqzprzhqnygjxabjjvrvdxxlzd";
};
kernelPatches = let rt-patch = {
name = "rt";
patch = fetchurl {
url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz";
- sha256 = "0i66z1njppn9qvl8msarcgbvmgby6hv8w0k0rmlizwj09i1pmwdx";
+ sha256 = "1sxyic3895dch3x7cabiip5lxv9wqypn22hcy02jg9825260cmd3";
};
}; in [ rt-patch ] ++ lib.remove rt-patch kernelPatches;