2009-01-15 07:40:23 -08:00
|
|
|
{ stdenv, fetchurl, perl, mktemp, module_init_tools
|
2008-03-24 12:39:42 -07:00
|
|
|
|
2009-01-15 07:40:23 -08:00
|
|
|
, # The kernel source tarball.
|
|
|
|
src
|
2008-03-24 12:39:42 -07:00
|
|
|
|
2009-01-15 07:40:23 -08: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 12:39:42 -07: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 07:40:23 -08:00
|
|
|
kernelPatches ? []
|
2008-03-24 12:39:42 -07:00
|
|
|
|
|
|
|
, # Whether to build a User-Mode Linux kernel.
|
|
|
|
userModeLinux ? false
|
|
|
|
|
2008-10-04 08:24:08 -07:00
|
|
|
, # Whether to build a Xen kernel.
|
|
|
|
xen ? false
|
|
|
|
|
2009-01-15 07:40:23 -08:00
|
|
|
, # Allows you to set your own kernel version suffix (e.g.,
|
|
|
|
# "-my-kernel").
|
|
|
|
localVersion ? ""
|
2008-03-24 12:39:42 -07:00
|
|
|
|
2009-01-17 05:40:12 -08:00
|
|
|
, preConfigure ? ""
|
2009-09-11 06:16:18 -07:00
|
|
|
, extraMeta ? {}
|
2010-02-16 11:27:51 -08:00
|
|
|
, platform ? {
|
|
|
|
name = "pc";
|
|
|
|
uboot = null;
|
|
|
|
kernelBaseConfig = "defconfig";
|
|
|
|
kernelAutoModules = true;
|
2010-02-17 14:20:56 -08:00
|
|
|
kernelTarget = "bzImage";
|
2010-02-16 11:27:51 -08:00
|
|
|
}
|
2010-02-27 10:51:06 -08:00
|
|
|
, ubootChooser ? null
|
2009-07-15 14:09:17 -07:00
|
|
|
, ...
|
2008-03-24 12:39:42 -07:00
|
|
|
}:
|
|
|
|
|
2009-11-07 16:32:12 -08:00
|
|
|
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"
|
|
|
|
|| stdenv.system == "armv5tel-linux";
|
2008-03-24 12:39:42 -07:00
|
|
|
|
2009-11-08 09:19:46 -08:00
|
|
|
assert platform.name == "sheevaplug" -> platform.uboot != null;
|
|
|
|
|
2008-03-24 12:39:42 -07:00
|
|
|
let
|
|
|
|
|
2009-01-15 07:40:23 -08:00
|
|
|
lib = stdenv.lib;
|
2008-03-24 12:39:42 -07:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = if userModeLinux then "user-mode-linux-${version}" else "linux-${version}";
|
2008-05-22 12:29:23 -07: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 12:39:42 -07:00
|
|
|
|
2009-01-15 07:40:23 -08:00
|
|
|
builder = ./builder.sh;
|
2008-03-24 12:39:42 -07:00
|
|
|
|
2009-12-12 05:51:07 -08:00
|
|
|
generateConfig = ./generate-config.pl;
|
|
|
|
|
2009-12-12 10:55:17 -08:00
|
|
|
inherit preConfigure src module_init_tools localVersion;
|
2010-02-16 11:27:51 -08:00
|
|
|
autoModules = platform.kernelAutoModules;
|
2009-01-17 05:40:12 -08:00
|
|
|
|
2008-03-24 12:39:42 -07:00
|
|
|
patches = map (p: p.patch) kernelPatches;
|
|
|
|
|
2009-12-12 05:51:07 -08:00
|
|
|
kernelConfig =
|
|
|
|
let
|
|
|
|
configFromPatches =
|
|
|
|
map ({extraConfig ? "", ...}: extraConfig) kernelPatches;
|
|
|
|
in lib.concatStringsSep "\n" ([config] ++ configFromPatches);
|
2009-11-08 09:19:46 -08:00
|
|
|
|
2009-12-28 03:26:23 -08:00
|
|
|
# For UML and non-PC, just ignore all options that don't apply (We are lazy).
|
2010-02-17 14:20:56 -08:00
|
|
|
ignoreConfigErrors = (userModeLinux || platform.name != "pc");
|
2009-12-14 09:22:38 -08:00
|
|
|
|
2010-02-17 14:20:56 -08:00
|
|
|
buildNativeInputs = [ perl mktemp ];
|
2010-02-27 10:51:06 -08:00
|
|
|
buildInputs = lib.optional (platform.uboot != null) (ubootChooser platform.uboot);
|
2009-11-08 09:19:46 -08:00
|
|
|
|
|
|
|
platformName = platform.name;
|
2009-12-19 04:12:24 -08:00
|
|
|
kernelBaseConfig = platform.kernelBaseConfig;
|
2010-02-17 14:20:56 -08:00
|
|
|
kernelTarget = platform.kernelTarget;
|
2008-03-24 12:39:42 -07:00
|
|
|
|
|
|
|
arch =
|
2008-10-04 08:24:08 -07:00
|
|
|
if xen then "xen" else
|
2009-01-15 07:40:23 -08:00
|
|
|
if userModeLinux then "um" else
|
2009-12-19 04:12:24 -08:00
|
|
|
if platform ? kernelArch then platform.kernelArch else
|
2008-03-24 12:39:42 -07: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 06:10:39 -08:00
|
|
|
license = "GPLv2";
|
|
|
|
homepage = http://www.kernel.org/;
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
2009-09-11 06:16:18 -07:00
|
|
|
} // extraMeta;
|
2008-03-24 12:39:42 -07:00
|
|
|
}
|