From bde6dc5c3ab3c3ecc800c9cf4cd70d19561a9d53 Mon Sep 17 00:00:00 2001 From: TredwellGit Date: Wed, 20 Oct 2021 11:39:09 +0000 Subject: [PATCH] linux: 4.14.251 -> 4.14.252 (cherry picked from commit c4d7df2b7bd79afd6766e954789d3c92881d3b3e) --- pkgs/os-specific/linux/kernel/linux-4.14.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix index a6d35b5d32e..553d8dd786e 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "4.14.251"; + version = "4.14.252"; # 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,7 +13,7 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "08g1i6wylwi50rns2grdi9f0m8np64qvfqb28drafy772m2klinp"; + sha256 = "022rw51s8fzz6wcxa9xq6h60fglfx0hq7bmqgs5dlrci6plv4fwk"; }; kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_14 ];