2007-02-08 13:34:49 +01:00
|
|
|
{ stdenv, fetchurl, perl, mktemp, module_init_tools
|
|
|
|
|
|
|
|
# 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 ? []
|
2007-03-27 13:11:58 +02:00
|
|
|
|
|
|
|
, # Whether to build a User-Mode Linux kernel.
|
|
|
|
userModeLinux ? false
|
2007-02-08 13:34:49 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
|
|
|
|
|
|
|
|
let lib = import ../../../lib; in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-04-16 12:29:24 +02:00
|
|
|
name = "linux-2.6.20.7";
|
2007-02-08 13:34:49 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2007-04-16 12:29:24 +02:00
|
|
|
url = http://ftp.nl.kernel.org/pub/linux/kernel/v2.6/linux-2.6.20.7.tar.bz2;
|
|
|
|
sha256 = "1a6flnnaaj11c7cgsr63ix5ln67wih3ffbv473dvsqb0c2rmwvw5";
|
2007-02-08 13:34:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = map (p: p.patch) kernelPatches;
|
|
|
|
extraConfig = lib.concatStrings (map (p: "\n" + p.extraConfig + "\n") kernelPatches);
|
|
|
|
|
|
|
|
config =
|
2007-03-27 13:11:58 +02:00
|
|
|
if userModeLinux then ./config-2.6.20-uml else
|
2007-02-08 13:34:49 +01:00
|
|
|
if stdenv.system == "i686-linux" then ./config-2.6.20-i686-smp else
|
|
|
|
if stdenv.system == "x86_64-linux" then ./config-2.6.20-x86_64-smp else
|
|
|
|
abort "No kernel configuration for your platform!";
|
|
|
|
|
|
|
|
buildInputs = [perl mktemp];
|
|
|
|
|
|
|
|
arch =
|
2007-03-27 13:11:58 +02:00
|
|
|
if userModeLinux then "um" else
|
2007-02-08 13:34:49 +01:00
|
|
|
if stdenv.system == "i686-linux" then "i386" else
|
|
|
|
if stdenv.system == "x86_64-linux" then "x86_64" else
|
|
|
|
abort "";
|
|
|
|
|
2007-03-28 13:21:16 +02:00
|
|
|
makeFlags = if userModeLinux then "ARCH=um SHELL=bash" else "";
|
2007-03-27 13:11:58 +02:00
|
|
|
|
2007-02-08 13:34:49 +01:00
|
|
|
inherit module_init_tools;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description =
|
2007-03-27 13:11:58 +02:00
|
|
|
(if userModeLinux then
|
|
|
|
"User-Mode Linux"
|
|
|
|
else
|
|
|
|
"The Linux kernel") +
|
2007-02-08 13:34:49 +01:00
|
|
|
(if kernelPatches == [] then "" else
|
|
|
|
" (with patches: "
|
|
|
|
+ lib.concatStrings (lib.intersperse ", " (map (x: x.name) kernelPatches))
|
|
|
|
+ ")");
|
|
|
|
};
|
|
|
|
}
|