diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-02-11 20:52:06 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-02-11 20:52:06 +0000 |
commit | 1a35a663507900d27978720bca083307e1667188 (patch) | |
tree | d38e1c14e61f049589c1ae37f8632a857b5bca28 /toolchain/kernel-headers/Config.in | |
parent | aba5e68975c41d9ac3a35305ccc7dce5131d7731 (diff) | |
download | buildroot-novena-1a35a663507900d27978720bca083307e1667188.tar.gz buildroot-novena-1a35a663507900d27978720bca083307e1667188.zip |
Fix some silly bugs: a variable for gcc was used before it was defined, remove
'.svn' not 'CVS' from the install, add 2.4.29 kernel headers as the default.
Diffstat (limited to 'toolchain/kernel-headers/Config.in')
-rw-r--r-- | toolchain/kernel-headers/Config.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in index 7cb945d04..68898e597 100644 --- a/toolchain/kernel-headers/Config.in +++ b/toolchain/kernel-headers/Config.in @@ -6,7 +6,7 @@ comment "Kernel Header Options" choice prompt "Kernel Headers" - default BR2_KERNEL_HEADERS_2_4_27 + default BR2_KERNEL_HEADERS_2_4_29 help Select the version of kernel header files you wish to use. You must select the correct set of header files to match @@ -18,6 +18,9 @@ choice config BR2_KERNEL_HEADERS_2_4_27 bool "Linux 2.4.27 kernel headers" + config BR2_KERNEL_HEADERS_2_4_29 + bool "Linux 2.4.29 kernel headers" + config BR2_KERNEL_HEADERS_2_6_8 bool "Linux 2.6.8 kernel headers (with mips fixes)" @@ -30,6 +33,7 @@ config BR2_DEFAULT_KERNEL_HEADERS string default "2.4.25" if BR2_KERNEL_HEADERS_2_4_25 default "2.4.27" if BR2_KERNEL_HEADERS_2_4_27 + default "2.4.29" if BR2_KERNEL_HEADERS_2_4_29 default "2.6.8" if BR2_KERNEL_HEADERS_2_6_8 default "2.6.9" if BR2_KERNEL_HEADERS_2_6_9 |