2009-01-15 16:54:24 +01:00
|
|
|
args @ {stdenv, fetchurl, userModeLinux ? false, ...}:
|
2008-10-29 13:34:54 +01:00
|
|
|
|
2009-01-15 16:54:24 +01:00
|
|
|
assert !userModeLinux;
|
2008-10-29 13:34:54 +01:00
|
|
|
|
2009-01-15 16:54:24 +01:00
|
|
|
import ./generic.nix (
|
2008-10-29 13:34:54 +01:00
|
|
|
|
2009-01-15 16:54:24 +01:00
|
|
|
rec {
|
2009-10-28 13:07:00 +01:00
|
|
|
version = "2.6.27.38";
|
2008-10-29 13:34:54 +01:00
|
|
|
|
2009-01-15 16:54:24 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/kernel/v2.6/linux-${version}.tar.bz2";
|
2009-10-28 13:07:00 +01:00
|
|
|
sha256 = "1cciqyw7pz5iik1iz1p9xv6zc4xwy6dbbkwwbjnfwgkssx8bzyj3";
|
2009-01-15 16:54:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
features = {
|
|
|
|
iwlwifi = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
config =
|
|
|
|
if stdenv.system == "i686-linux" then ./config-2.6.27-i686-smp else
|
|
|
|
if stdenv.system == "x86_64-linux" then ./config-2.6.27-x86_64-smp else
|
|
|
|
abort "No kernel configuration for your platform!";
|
|
|
|
}
|
|
|
|
|
|
|
|
// args
|
|
|
|
)
|