summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-03-24 19:39:42 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-03-24 19:39:42 +0000
commit4ec702d2ab0c6c961d58026f5f4d476d439fdc06 (patch)
treee9e11cc1044cc56ea229a170c5ee8f54be60bb35 /pkgs/os-specific/linux/kernel/linux.nix
parent0dfa801a82b2361f4fd2a2f03c021caa518c49ec (diff)
downloadnixpkgs-4ec702d2ab0c6c961d58026f5f4d476d439fdc06.tar
nixpkgs-4ec702d2ab0c6c961d58026f5f4d476d439fdc06.tar.gz
nixpkgs-4ec702d2ab0c6c961d58026f5f4d476d439fdc06.tar.bz2
nixpkgs-4ec702d2ab0c6c961d58026f5f4d476d439fdc06.tar.lz
nixpkgs-4ec702d2ab0c6c961d58026f5f4d476d439fdc06.tar.xz
nixpkgs-4ec702d2ab0c6c961d58026f5f4d476d439fdc06.tar.zst
nixpkgs-4ec702d2ab0c6c961d58026f5f4d476d439fdc06.zip
Added generic functionality for custom kernels.
svn path=/nixpkgs/trunk/; revision=11275
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/linux.nix89
1 files changed, 89 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux.nix b/pkgs/os-specific/linux/kernel/linux.nix
new file mode 100644
index 00000000000..d4b4ad6c763
--- /dev/null
+++ b/pkgs/os-specific/linux/kernel/linux.nix
@@ -0,0 +1,89 @@
+{ stdenv, fetchurl, perl, mktemp, module_init_tools, lib
+
+  # The base source file
+, src
+
+  # A list of patches to apply to the kernel.  Each element of this list
+  # should be an attribute set {name, patch} where `name' is a
+  # symbolic name and `patch' is the actual patch.  The patch may
+  # optionally be compressed with gzip or bzip2.
+, kernelPatches ? []
+
+  # A list of commands to run on patched kernel before 
+  # mke oldconfig
+, preConfigure? ""
+
+, # Whether to build a User-Mode Linux kernel.
+  userModeLinux ? false
+
+, # Allows you to set your own kernel version for output
+  version ? "unknown"
+
+  # To change how kernel thinks of itself
+, localVersion ? ""
+
+, # Your own kernel configuration file, if you don't want to use the
+  # default. 
+  kernelConfig ? null
+
+, # A list of additional statements to be appended to the
+  # configuration file.
+  extraConfig ? []
+}:
+
+assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
+
+let
+
+  lib = import ../../../lib;
+
+in
+
+stdenv.mkDerivation {
+  name = if userModeLinux then "user-mode-linux-${version}" else "linux-${version}";
+  builder = ./builder-custom.sh;
+  
+  inherit src;
+  preConfigure = preConfigure;
+
+  patches = map (p: p.patch) kernelPatches;
+  extraConfig =
+    let addNewlines = map (s: "\n" + s + "\n");
+        configFromPatches =
+          map (p: if p ? extraConfig then p.extraConfig else "") kernelPatches;
+    in lib.concatStrings (addNewlines (configFromPatches ++ extraConfig));
+
+  config =
+    if kernelConfig != null then kernelConfig else
+    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!";
+  
+  buildInputs = [perl mktemp];
+  
+  arch =
+    if userModeLinux then "um" else
+    if stdenv.system == "i686-linux" then "i386" else
+    if stdenv.system == "x86_64-linux" then "x86_64" else
+    abort "Platform ${stdenv.system} is not supported.";
+
+  makeFlags = if userModeLinux then "ARCH=um SHELL=bash" else "";
+
+  inherit module_init_tools;
+
+  allowLocalVersion = false; # don't allow patches to set a suffix
+  inherit localVersion; # but do allow the user to set one.
+
+  meta = {
+    description =
+      (if userModeLinux then
+        "User-Mode Linux"
+       else
+        "The Linux kernel") +
+      (if kernelPatches == [] then "" else
+        " (with patches: "
+        + lib.concatStrings (lib.intersperse ", " (map (x: x.name) kernelPatches))
+        + ")");
+  };
+}