summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-01-10 10:49:34 -0800
committerWilliam A. Kennington III <william@wkennington.com>2015-01-11 23:55:38 -0800
commit6521141d09a2238331a43bf69716dd5b57ab3787 (patch)
tree7c03ceef826f7928803407588389bab6512a4e81 /pkgs/os-specific
parentba6648b1423a94387be61e6923ef842f42bcfc25 (diff)
downloadnixpkgs-6521141d09a2238331a43bf69716dd5b57ab3787.tar
nixpkgs-6521141d09a2238331a43bf69716dd5b57ab3787.tar.gz
nixpkgs-6521141d09a2238331a43bf69716dd5b57ab3787.tar.bz2
nixpkgs-6521141d09a2238331a43bf69716dd5b57ab3787.tar.lz
nixpkgs-6521141d09a2238331a43bf69716dd5b57ab3787.tar.xz
nixpkgs-6521141d09a2238331a43bf69716dd5b57ab3787.tar.zst
nixpkgs-6521141d09a2238331a43bf69716dd5b57ab3787.zip
kernel: Remove 3.16
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-3.16.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-3.16.nix b/pkgs/os-specific/linux/kernel/linux-3.16.nix
deleted file mode 100644
index 6997d51a0f1..00000000000
--- a/pkgs/os-specific/linux/kernel/linux-3.16.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ stdenv, fetchurl, ... } @ args:
-
-import ./generic.nix (args // rec {
-  version = "3.16.7";
-  extraMeta.branch = "3.16";
-
-  src = fetchurl {
-    url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
-    sha256 = "0vm3ahw6wzq72z6jim05pcj9gzjw8jc4r1dr5wnfl810nib89pbk";
-  };
-
-  features.iwlwifi = true;
-  features.efiBootStub = true;
-  features.needsCifsUtils = true;
-  features.canDisableNetfilterConntrackHelpers = true;
-  features.netfilterRPFilter = true;
-} // (args.argsOverride or {}))