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.
This commit is contained in:
Vladimír Čunát
2016-01-20 20:15:07 +01:00
parent 7f58e162bc
commit 4824f73cb3
2 changed files with 0 additions and 30 deletions

View File

@@ -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 {}))