summaryrefslogtreecommitdiffstats
path: root/toolchain/kernel-headers/Config.in
diff options
context:
space:
mode:
authorManuel Novoa III2004-10-27 10:55:52 +0200
committerManuel Novoa III2004-10-27 10:55:52 +0200
commit05d9d7c58ba9e1e234e27d4a469db52f25cf1a08 (patch)
tree8bfe22330279799d508eb26a054fa0f31adaadf7 /toolchain/kernel-headers/Config.in
parentEnforce openssl dependency. (diff)
downloadbuildroot-05d9d7c58ba9e1e234e27d4a469db52f25cf1a08.tar.gz
buildroot-05d9d7c58ba9e1e234e27d4a469db52f25cf1a08.tar.xz
buildroot-05d9d7c58ba9e1e234e27d4a469db52f25cf1a08.zip
Allow selection of specific (supported) versions... specificly the 2.6.8
headers with the (mostly mips related) cleanup patch.
Diffstat (limited to 'toolchain/kernel-headers/Config.in')
-rw-r--r--toolchain/kernel-headers/Config.in22
1 files changed, 15 insertions, 7 deletions
diff --git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in
index 350522959..7cb945d04 100644
--- a/toolchain/kernel-headers/Config.in
+++ b/toolchain/kernel-headers/Config.in
@@ -6,22 +6,30 @@ comment "Kernel Header Options"
choice
prompt "Kernel Headers"
- default BR2_KERNEL_HEADERS_2_4
+ default BR2_KERNEL_HEADERS_2_4_27
help
Select the version of kernel header files you wish to use.
You must select the correct set of header files to match
the kernel you intend to use on your target system.
- config BR2_KERNEL_HEADERS_2_4
- bool "Linux 2.4.x kernel headers"
+ config BR2_KERNEL_HEADERS_2_4_25
+ bool "Linux 2.4.25 kernel headers"
- config BR2_KERNEL_HEADERS_2_6
- bool "Linux 2.6.x kernel headers"
+ config BR2_KERNEL_HEADERS_2_4_27
+ bool "Linux 2.4.27 kernel headers"
+
+ config BR2_KERNEL_HEADERS_2_6_8
+ bool "Linux 2.6.8 kernel headers (with mips fixes)"
+
+ config BR2_KERNEL_HEADERS_2_6_9
+ bool "Linux 2.6.9 kernel headers"
endchoice
config BR2_DEFAULT_KERNEL_HEADERS
string
- default "2.4.27" if BR2_KERNEL_HEADERS_2_4
- default "2.6.9" if BR2_KERNEL_HEADERS_2_6
+ default "2.4.25" if BR2_KERNEL_HEADERS_2_4_25
+ default "2.4.27" if BR2_KERNEL_HEADERS_2_4_27
+ default "2.6.8" if BR2_KERNEL_HEADERS_2_6_8
+ default "2.6.9" if BR2_KERNEL_HEADERS_2_6_9