summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2022-03-27 10:33:46 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2022-03-27 14:29:43 +0000
commitc1fc3779497e73a8e440be6199f78c605528a38a (patch)
treea08cee2ab825c630f2bc06672bffaf0b8b7c5e37
parent662ac47be8716b4c3b32f7949fe1298634e3a2a9 (diff)
linux: 5.16.16 -> 5.16.17
(cherry picked from commit 0cbdca520de04ca16a6c2b5b76ce0ee72f2ba970)
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.16.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.16.nix b/pkgs/os-specific/linux/kernel/linux-5.16.nix
index 63dc8d0463a9..03947d5b1f84 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.16.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.16.nix
@@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
- version = "5.16.16";
+ version = "5.16.17";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
- sha256 = "13qk6cjnjwgnxj25mphyv08pjf1sqz7bxxrr3fpl8gz3aghdd9yc";
+ sha256 = "1z7i6z36rs777xiff5x3qjdc02x91n9ibf7rqr003ws7bf84vvnf";
};
} // (args.argsOverride or { }))