2004-10-09 03:06:03 +02:00
|
|
|
# Choose the kernel headers to use for kernel-headers target. This is
|
|
|
|
# ignored if you are building your own kernel or using the system kernel.
|
|
|
|
#
|
|
|
|
|
2004-10-09 07:33:05 +02:00
|
|
|
comment "Kernel Header Options"
|
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
choice
|
|
|
|
prompt "Kernel Headers"
|
2005-07-19 00:20:12 +02:00
|
|
|
default BR2_KERNEL_HEADERS_2_4_31
|
2004-10-09 03:06:03 +02:00
|
|
|
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.
|
|
|
|
|
2004-10-27 10:55:52 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_4_25
|
|
|
|
bool "Linux 2.4.25 kernel headers"
|
2004-10-09 03:06:03 +02:00
|
|
|
|
2004-10-27 10:55:52 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_4_27
|
|
|
|
bool "Linux 2.4.27 kernel headers"
|
|
|
|
|
2005-02-11 21:52:06 +01:00
|
|
|
config BR2_KERNEL_HEADERS_2_4_29
|
|
|
|
bool "Linux 2.4.29 kernel headers"
|
|
|
|
|
2005-07-19 00:20:12 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_4_31
|
|
|
|
bool "Linux 2.4.31 kernel headers"
|
2005-03-18 11:23:50 +01:00
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_2_6_11
|
|
|
|
bool "Linux 2.6.11 kernel headers"
|
|
|
|
|
2005-07-19 00:20:12 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_12
|
|
|
|
bool "Linux 2.6.12 kernel headers"
|
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BR2_DEFAULT_KERNEL_HEADERS
|
|
|
|
string
|
2004-10-27 10:55:52 +02:00
|
|
|
default "2.4.25" if BR2_KERNEL_HEADERS_2_4_25
|
|
|
|
default "2.4.27" if BR2_KERNEL_HEADERS_2_4_27
|
2005-02-11 21:52:06 +01:00
|
|
|
default "2.4.29" if BR2_KERNEL_HEADERS_2_4_29
|
2005-07-19 00:20:12 +02:00
|
|
|
default "2.4.31" if BR2_KERNEL_HEADERS_2_4_31
|
2005-03-18 11:23:50 +01:00
|
|
|
default "2.6.11" if BR2_KERNEL_HEADERS_2_6_11
|
2005-07-19 00:20:12 +02:00
|
|
|
default "2.6.12" if BR2_KERNEL_HEADERS_2_6_12
|
2004-10-09 03:06:03 +02:00
|
|
|
|