Add a config for older x86 processors without PAE support. Turn off PAT for a good measure, too

svn path=/nixpkgs/trunk/; revision=16382
This commit is contained in:
Michael Raskin
2009-07-15 21:01:24 +00:00
parent 666f904649
commit 0865385a29
4 changed files with 4886 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
args @ {stdenv, fetchurl, userModeLinux ? false, ...}:
args @ {stdenv, fetchurl, userModeLinux ? false, oldI686 ? false, ...}:
assert !userModeLinux;
@@ -21,7 +21,8 @@ import ./generic.nix (
};
config =
if stdenv.system == "i686-linux" then ./config-2.6.31-rc3-all-mod-i686 else
if stdenv.system == "i686-linux" then if oldI686 then ./config-2.6.31-rc3-all-mod-i686-older else
./config-2.6.31-rc3-all-mod-i686 else
if stdenv.system == "x86_64-linux" then ./config-2.6.31-rc3-all-mod-amd64 else
abort "No kernel configuration for your platform!";
}