svn path=/nixpkgs/trunk/; revision=7741
This commit is contained in:
Eelco Dolstra 2007-01-22 13:34:08 +00:00
parent b737f2c806
commit a7878ba0a7

View file

@ -21,8 +21,8 @@ stdenv.mkDerivation {
patches = map (p: p.patch) kernelPatches;
config =
if stdenv.system == "i686-linux" then ./config-2.6.19.1-i686-smp else
if stdenv.system == "x86_64-linux" then ./config-2.6.19.1-x86_64-smp else
if stdenv.system == "i686-linux" then ./config-2.6.19.2-i686-smp else
if stdenv.system == "x86_64-linux" then ./config-2.6.19.2-x86_64-smp else
abort "No kernel configuration for your platform!";
buildInputs = [perl mktemp];