summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-01-20 20:15:07 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-01-20 20:15:07 +0100
commit4824f73cb3cd41c962f35548dfa2351c0f48633e (patch)
tree00feb26f106670b3e65afaf8b34f5a49eb006f01 /pkgs/os-specific/linux
parent7f58e162bc60daf51961fda6f5e721dde529539b (diff)
downloadnixlib-4824f73cb3cd41c962f35548dfa2351c0f48633e.tar
nixlib-4824f73cb3cd41c962f35548dfa2351c0f48633e.tar.gz
nixlib-4824f73cb3cd41c962f35548dfa2351c0f48633e.tar.bz2
nixlib-4824f73cb3cd41c962f35548dfa2351c0f48633e.tar.lz
nixlib-4824f73cb3cd41c962f35548dfa2351c0f48633e.tar.xz
nixlib-4824f73cb3cd41c962f35548dfa2351c0f48633e.tar.zst
nixlib-4824f73cb3cd41c962f35548dfa2351c0f48633e.zip
linux-4.2: remove as it's no longer maintained upstream
grsecurity still holds a reference to it,
but I prefer it to fail than to use a version
that is most likely not secure anymore.
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.2.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.2.nix b/pkgs/os-specific/linux/kernel/linux-4.2.nix
deleted file mode 100644
index fbeecb3984d5..000000000000
--- a/pkgs/os-specific/linux/kernel/linux-4.2.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
-
-import ./generic.nix (args // rec {
-  version = "4.2.6";
-  # Remember to update grsecurity!
-  extraMeta.branch = "4.2";
-
-  src = fetchurl {
-    url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
-    sha256 = "0p7v6v3v9kn7w5iragi5hx0dylhis0jy6xmk77gka486q1ynpnqp";
-  };
-
-  kernelPatches = args.kernelPatches ++ [ { name = "cve-2016-0728"; patch = ./cve-2016-0728.patch; } ];
-
-  features.iwlwifi = true;
-  features.efiBootStub = true;
-  features.needsCifsUtils = true;
-  features.canDisableNetfilterConntrackHelpers = true;
-  features.netfilterRPFilter = true;
-} // (args.argsOverride or {}))