2007-12-01 21:29:37 +01:00
|
|
|
args:
|
|
|
|
(import ./meta.nix)
|
|
|
|
( args //
|
|
|
|
{
|
|
|
|
version = "2.6.23";
|
|
|
|
src_hash = { sha256 = "1nyv7004w40l4adzq2b0hrvk3f4iqwngkgrlh8as9cpz6l4prrnl"; };
|
|
|
|
|
|
|
|
systemPatches = [ ];
|
|
|
|
|
|
|
|
config = with args;
|
2007-12-03 23:48:03 +01:00
|
|
|
if config != null then config else
|
2007-12-04 00:40:46 +01:00
|
|
|
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
|
2007-12-01 21:29:37 +01:00
|
|
|
abort "No kernel configuration for your platform!";
|
|
|
|
}
|
|
|
|
)
|