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.
|
|
|
|
#
|
|
|
|
|
2007-09-25 09:55:45 +02:00
|
|
|
comment "Kernel Header Options"
|
2004-10-09 07:33:05 +02:00
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
choice
|
|
|
|
prompt "Kernel Headers"
|
2011-07-22 09:08:36 +02:00
|
|
|
default BR2_KERNEL_HEADERS_3_0
|
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.
|
|
|
|
|
2007-09-25 13:38:20 +02:00
|
|
|
For the snapshot, you have to provide the
|
|
|
|
linux-2.6.tar.bz2 tarball in your download dir.
|
|
|
|
|
2010-09-06 09:34:46 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_35
|
|
|
|
bool "Linux 2.6.35.x kernel headers"
|
|
|
|
|
2010-10-23 14:50:26 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_36
|
2010-10-25 13:26:15 +02:00
|
|
|
bool "Linux 2.6.36.x kernel headers"
|
2010-10-23 14:50:26 +02:00
|
|
|
|
2011-01-06 08:43:13 +01:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_37
|
|
|
|
bool "Linux 2.6.37.x kernel headers"
|
|
|
|
|
2011-03-15 09:09:32 +01:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_38
|
|
|
|
bool "Linux 2.6.38.x kernel headers"
|
|
|
|
|
2011-06-09 10:36:21 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_39
|
|
|
|
bool "Linux 2.6.39.x kernel headers"
|
|
|
|
|
2011-07-22 09:08:36 +02:00
|
|
|
config BR2_KERNEL_HEADERS_3_0
|
|
|
|
bool "Linux 3.0.x kernel headers"
|
|
|
|
|
2009-10-07 22:08:25 +02:00
|
|
|
config BR2_KERNEL_HEADERS_VERSION
|
|
|
|
bool "Linux 2.6 (manually specified version)"
|
|
|
|
|
2007-09-25 13:38:20 +02:00
|
|
|
config BR2_KERNEL_HEADERS_SNAP
|
2009-12-06 15:40:03 +01:00
|
|
|
bool "Local Linux snapshot (linux-2.6.tar.bz2)"
|
2004-10-09 03:06:03 +02:00
|
|
|
endchoice
|
|
|
|
|
2009-10-07 22:08:25 +02:00
|
|
|
config BR2_DEFAULT_KERNEL_VERSION
|
|
|
|
string "linux version"
|
|
|
|
depends on BR2_KERNEL_HEADERS_VERSION
|
|
|
|
help
|
|
|
|
Specify the version you want to use.
|
2011-03-15 09:09:32 +01:00
|
|
|
E.G.: 2.6.38
|
2009-10-07 22:08:25 +02:00
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
config BR2_DEFAULT_KERNEL_HEADERS
|
|
|
|
string
|
2011-08-04 20:32:54 +02:00
|
|
|
default "2.6.35.14" if BR2_KERNEL_HEADERS_2_6_35
|
2011-02-18 13:23:43 +01:00
|
|
|
default "2.6.36.4" if BR2_KERNEL_HEADERS_2_6_36
|
2011-03-29 22:19:49 +02:00
|
|
|
default "2.6.37.6" if BR2_KERNEL_HEADERS_2_6_37
|
2011-06-09 10:35:39 +02:00
|
|
|
default "2.6.38.8" if BR2_KERNEL_HEADERS_2_6_38
|
2011-08-04 20:32:54 +02:00
|
|
|
default "2.6.39.4" if BR2_KERNEL_HEADERS_2_6_39
|
2011-07-22 09:08:36 +02:00
|
|
|
default "3.0" if BR2_KERNEL_HEADERS_3_0
|
2007-10-12 17:10:27 +02:00
|
|
|
default "2.6" if BR2_KERNEL_HEADERS_SNAP
|
2009-10-07 22:08:25 +02:00
|
|
|
default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
|