summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-2.6.23.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-2.6.23.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-2.6.23.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-2.6.23.nix b/pkgs/os-specific/linux/kernel/linux-2.6.23.nix
deleted file mode 100644
index c05e959ddb3a8..0000000000000
--- a/pkgs/os-specific/linux/kernel/linux-2.6.23.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-args @ {stdenv, fetchurl, userModeLinux ? false, ...}:
-
-import ./generic.nix (
-
-  rec {
-    version = "2.6.23.17";
-  
-    src = fetchurl {
-      url = "mirror://kernel/linux/kernel/v2.6/linux-${version}.tar.bz2";
-      sha256 = "0lww6ywgl353xlaxcc3hg5d2q1vcydbqhddvkfpphr07zr7mwl32";
-    };
-
-    config =
-      if userModeLinux then ./config-2.6.23-uml else
-      if stdenv.system == "i686-linux" then ./config-2.6.23-i686-smp else
-      if stdenv.system == "x86_64-linux" then ./config-2.6.23-x86_64-smp else
-      abort "No kernel configuration for your platform!";
-  }
-
-  // args
-)