forked from mirrors/nixpkgs
* Doh doh doh! Use the right config file for the 2.6.26 kernel.
svn path=/nixpkgs/trunk/; revision=12690
This commit is contained in:
parent
f27856e3fa
commit
eb63b86c6d
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Linux kernel version: 2.6.26.2
|
||||
# Thu Aug 7 16:21:47 2008
|
||||
# Linux kernel version: 2.6.26.3
|
||||
# Fri Aug 22 12:48:11 2008
|
||||
#
|
||||
# CONFIG_64BIT is not set
|
||||
CONFIG_X86_32=y
|
||||
|
@ -2383,6 +2383,7 @@ CONFIG_DEVPORT=y
|
|||
CONFIG_I2C=m
|
||||
CONFIG_I2C_BOARDINFO=y
|
||||
CONFIG_I2C_CHARDEV=m
|
||||
CONFIG_I2C_HELPER_AUTO=y
|
||||
CONFIG_I2C_ALGOBIT=m
|
||||
CONFIG_I2C_ALGOPCA=m
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Linux kernel version: 2.6.26.2
|
||||
# Thu Aug 7 16:33:17 2008
|
||||
# Linux kernel version: 2.6.26.3
|
||||
# Fri Aug 22 12:49:00 2008
|
||||
#
|
||||
CONFIG_64BIT=y
|
||||
# CONFIG_X86_32 is not set
|
||||
|
@ -2200,6 +2200,7 @@ CONFIG_DEVPORT=y
|
|||
CONFIG_I2C=m
|
||||
CONFIG_I2C_BOARDINFO=y
|
||||
CONFIG_I2C_CHARDEV=m
|
||||
CONFIG_I2C_HELPER_AUTO=y
|
||||
CONFIG_I2C_ALGOBIT=m
|
||||
CONFIG_I2C_ALGOPCA=m
|
||||
|
||||
|
|
|
@ -61,9 +61,9 @@ stdenv.mkDerivation {
|
|||
|
||||
config =
|
||||
if kernelConfig != null then kernelConfig else
|
||||
if userModeLinux then ./config-2.6.25-uml else
|
||||
if stdenv.system == "i686-linux" then ./config-2.6.25-i686-smp else
|
||||
if stdenv.system == "x86_64-linux" then ./config-2.6.25-x86_64-smp else
|
||||
if userModeLinux then ./config-2.6.26-uml else
|
||||
if stdenv.system == "i686-linux" then ./config-2.6.26-i686-smp else
|
||||
if stdenv.system == "x86_64-linux" then ./config-2.6.26-x86_64-smp else
|
||||
abort "No kernel configuration for your platform!";
|
||||
|
||||
buildInputs = [perl mktemp];
|
||||
|
|
Loading…
Reference in a new issue