2007-12-01 21:29:21 +01:00
|
|
|
args:
|
|
|
|
(import ./meta.nix)
|
|
|
|
( args //
|
|
|
|
{
|
|
|
|
version = "2.6.22.10";
|
|
|
|
src_hash = { sha256 = "0kh196qzm54mvnbrdr9s2q86l9yn2321gnsl5xq44ai2idqp044g"; };
|
|
|
|
|
|
|
|
systemPatches = [
|
|
|
|
{ name = "paravirt-nvidia";
|
2007-12-04 00:27:53 +01:00
|
|
|
patch = ./2.6.22-paravirt-nvidia.patch;
|
2007-12-01 21:29:21 +01:00
|
|
|
}
|
|
|
|
{ name = "fbsplash-0.9.2-r5-2.6.21";
|
2007-12-03 23:26:36 +01:00
|
|
|
patch = args.fetchurl {
|
2007-12-01 21:29:21 +01:00
|
|
|
url = http://dev.gentoo.org/~dsd/genpatches/trunk/2.6.22/4200_fbsplash-0.9.2-r5.patch;
|
|
|
|
sha256 = "0822wwlf2dqsap5qslnnp0yl1nbvvvb76l73w2dd8zsyn0bqg3px";
|
|
|
|
};
|
|
|
|
extraConfig = "CONFIG_FB_SPLASH=y";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
config = with args;
|
2007-12-03 23:48:03 +01:00
|
|
|
if config != null then config else
|
2007-12-01 21:29:21 +01:00
|
|
|
if userModeLinux then ./config-2.6.22-uml else
|
|
|
|
if stdenv.system == "i686-linux" then ./config-2.6.22-i686-smp else
|
|
|
|
if stdenv.system == "x86_64-linux" then ./config-2.6.22-x86_64-smp else
|
|
|
|
abort "No kernel configuration for your platform!";
|
|
|
|
}
|
|
|
|
)
|