2009-01-15 16:40:23 +01:00
|
|
|
{ stdenv, fetchurl, perl, mktemp, module_init_tools
|
2008-03-24 20:39:42 +01:00
|
|
|
|
2009-01-15 16:40:23 +01:00
|
|
|
, # The kernel source tarball.
|
|
|
|
src
|
2008-03-24 20:39:42 +01:00
|
|
|
|
2009-01-15 16:40:23 +01:00
|
|
|
, # The kernel version.
|
|
|
|
version
|
|
|
|
|
|
|
|
, # The kernel configuration.
|
|
|
|
config
|
|
|
|
|
|
|
|
, # An attribute set whose attributes express the availability of
|
|
|
|
# certain features in this kernel. E.g. `{iwlwifi = true;}'
|
|
|
|
# indicates a kernel that provides Intel wireless support. Used in
|
|
|
|
# NixOS to implement kernel-specific behaviour.
|
|
|
|
features ? {}
|
|
|
|
|
|
|
|
, # A list of patches to apply to the kernel. Each element of this list
|
2008-03-24 20:39:42 +01:00
|
|
|
# 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.
|
2009-01-15 16:40:23 +01:00
|
|
|
kernelPatches ? []
|
2008-03-24 20:39:42 +01:00
|
|
|
|
|
|
|
, # Whether to build a User-Mode Linux kernel.
|
|
|
|
userModeLinux ? false
|
|
|
|
|
2008-10-04 17:24:08 +02:00
|
|
|
, # Whether to build a Xen kernel.
|
|
|
|
xen ? false
|
|
|
|
|
2009-01-15 16:40:23 +01:00
|
|
|
, # Allows you to set your own kernel version suffix (e.g.,
|
|
|
|
# "-my-kernel").
|
|
|
|
localVersion ? ""
|
2008-03-24 20:39:42 +01:00
|
|
|
|
2009-01-17 14:40:12 +01:00
|
|
|
, preConfigure ? ""
|
2009-09-11 15:16:18 +02:00
|
|
|
, extraMeta ? {}
|
2010-02-16 20:27:51 +01:00
|
|
|
, platform ? {
|
|
|
|
name = "pc";
|
|
|
|
uboot = null;
|
|
|
|
kernelBaseConfig = "defconfig";
|
|
|
|
kernelAutoModules = true;
|
|
|
|
}
|
2009-07-15 23:09:17 +02:00
|
|
|
, ...
|
2008-03-24 20:39:42 +01:00
|
|
|
}:
|
|
|
|
|
2009-11-08 01:32:12 +01:00
|
|
|
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"
|
|
|
|
|| stdenv.system == "armv5tel-linux";
|
2008-03-24 20:39:42 +01:00
|
|
|
|
2009-11-08 18:19:46 +01:00
|
|
|
assert platform.name == "sheevaplug" -> platform.uboot != null;
|
|
|
|
assert (platform.name == "sheevaplug" || platform.name == "versatileARM") ->
|
|
|
|
stdenv.system == "armv5tel-linux";
|
|
|
|
|
2008-03-24 20:39:42 +01:00
|
|
|
let
|
|
|
|
|
2009-01-15 16:40:23 +01:00
|
|
|
lib = stdenv.lib;
|
2008-03-24 20:39:42 +01:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = if userModeLinux then "user-mode-linux-${version}" else "linux-${version}";
|
2008-05-22 21:29:23 +02:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit version;
|
|
|
|
# Combine the `features' attribute sets of all the kernel patches.
|
|
|
|
features = lib.fold (x: y: (if x ? features then x.features else {}) // y) features kernelPatches;
|
|
|
|
};
|
2008-03-24 20:39:42 +01:00
|
|
|
|
2009-01-15 16:40:23 +01:00
|
|
|
builder = ./builder.sh;
|
2008-03-24 20:39:42 +01:00
|
|
|
|
2009-12-12 14:51:07 +01:00
|
|
|
generateConfig = ./generate-config.pl;
|
|
|
|
|
2009-12-12 19:55:17 +01:00
|
|
|
inherit preConfigure src module_init_tools localVersion;
|
2010-02-16 20:27:51 +01:00
|
|
|
autoModules = platform.kernelAutoModules;
|
2009-01-17 14:40:12 +01:00
|
|
|
|
2008-03-24 20:39:42 +01:00
|
|
|
patches = map (p: p.patch) kernelPatches;
|
|
|
|
|
2009-12-12 14:51:07 +01:00
|
|
|
kernelConfig =
|
|
|
|
let
|
|
|
|
configFromPatches =
|
|
|
|
map ({extraConfig ? "", ...}: extraConfig) kernelPatches;
|
|
|
|
in lib.concatStringsSep "\n" ([config] ++ configFromPatches);
|
2009-11-08 18:19:46 +01:00
|
|
|
|
2009-12-28 12:26:23 +01:00
|
|
|
# For UML and non-PC, just ignore all options that don't apply (We are lazy).
|
|
|
|
ignoreConfigErrors = (userModeLinux || stdenv.system == "armv5tel-linux");
|
2009-12-14 18:22:38 +01:00
|
|
|
|
2009-12-19 12:14:16 +01:00
|
|
|
buildInputs = [ perl mktemp ]
|
|
|
|
++ lib.optional (platform.uboot != null) [platform.uboot];
|
2009-11-08 18:19:46 +01:00
|
|
|
|
|
|
|
platformName = platform.name;
|
2009-12-19 13:12:24 +01:00
|
|
|
kernelBaseConfig = platform.kernelBaseConfig;
|
2008-03-24 20:39:42 +01:00
|
|
|
|
|
|
|
arch =
|
2008-10-04 17:24:08 +02:00
|
|
|
if xen then "xen" else
|
2009-01-15 16:40:23 +01:00
|
|
|
if userModeLinux then "um" else
|
2009-12-19 13:12:24 +01:00
|
|
|
if platform ? kernelArch then platform.kernelArch else
|
2008-03-24 20:39:42 +01:00
|
|
|
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.";
|
|
|
|
|
|
|
|
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))
|
|
|
|
+ ")");
|
2010-01-07 15:10:39 +01:00
|
|
|
license = "GPLv2";
|
|
|
|
homepage = http://www.kernel.org/;
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
2009-09-11 15:16:18 +02:00
|
|
|
} // extraMeta;
|
2008-03-24 20:39:42 +01:00
|
|
|
}
|