summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-2.6.31-rc4.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-2.6.31-rc4.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-2.6.31-rc4.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-2.6.31-rc4.nix b/pkgs/os-specific/linux/kernel/linux-2.6.31-rc4.nix
deleted file mode 100644
index a5e76a24556fb..0000000000000
--- a/pkgs/os-specific/linux/kernel/linux-2.6.31-rc4.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-args @ {stdenv, fetchurl, userModeLinux ? false, oldI686 ? false, ...}:
-
-assert !userModeLinux;
-
-import ./generic.nix (
-
-  let
-    baseVersion = "2.6.30"; 
-  in
-
-  rec {
-    version = "2.6.31-rc4";
-  
-    src = fetchurl {
-      url = "mirror://kernel/linux/kernel/v2.6/linux-${baseVersion}.tar.bz2";
-      sha256 = "d7b9f19b92fd5c693c16cd62f441d051b699f28ec6a175d1b464e58bacd8c78f";
-    };
-
-    features = {
-      iwlwifi = true;
-    };
- 
-    config =
-      if stdenv.system == "i686-linux" then if oldI686 then ./config-2.6.31-rc4-all-mod-i686-older else 
-        ./config-2.6.31-rc3-all-mod-i686 else
-      if stdenv.system == "x86_64-linux" then ./config-2.6.31-rc3-all-mod-amd64 else
-      abort "No kernel configuration for your platform!";
-  }
-
-  // args
-)