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"
|
2010-10-23 14:50:26 +02:00
|
|
|
default BR2_KERNEL_HEADERS_2_6_36
|
2007-10-12 17:10:27 +02:00
|
|
|
|
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.
|
|
|
|
|
2009-06-11 12:26:16 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_30
|
|
|
|
bool "Linux 2.6.30.x kernel headers"
|
2009-12-03 11:47:38 +01:00
|
|
|
depends on BR2_DEPRECATED
|
2009-09-10 10:30:54 +02:00
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_2_6_31
|
|
|
|
bool "Linux 2.6.31.x kernel headers"
|
2010-03-12 23:18:05 +01:00
|
|
|
depends on BR2_DEPRECATED
|
2009-12-03 11:47:38 +01:00
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_2_6_32
|
|
|
|
bool "Linux 2.6.32.x kernel headers"
|
2010-09-06 09:34:46 +02:00
|
|
|
depends on BR2_DEPRECATED
|
2010-03-12 23:18:05 +01:00
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_2_6_33
|
2010-10-23 14:50:26 +02:00
|
|
|
depends on BR2_DEPRECATED
|
2010-03-12 23:18:05 +01:00
|
|
|
bool "Linux 2.6.33.x kernel headers"
|
2008-12-28 14:50:45 +01:00
|
|
|
|
2010-06-01 22:07:48 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_34
|
|
|
|
bool "Linux 2.6.34.x kernel headers"
|
|
|
|
|
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
|
|
|
|
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.
|
2010-09-06 09:34:46 +02:00
|
|
|
E.G.: 2.6.31.2
|
2009-10-07 22:08:25 +02:00
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
config BR2_DEFAULT_KERNEL_HEADERS
|
|
|
|
string
|
2009-12-04 09:35:30 +01:00
|
|
|
default "2.6.30.10" if BR2_KERNEL_HEADERS_2_6_30
|
2010-07-06 00:38:54 +02:00
|
|
|
default "2.6.31.14" if BR2_KERNEL_HEADERS_2_6_31
|
2010-12-10 10:47:25 +01:00
|
|
|
default "2.6.32.27" if BR2_KERNEL_HEADERS_2_6_32
|
2010-08-12 16:47:17 +02:00
|
|
|
default "2.6.33.7" if BR2_KERNEL_HEADERS_2_6_33
|
2010-09-15 11:46:07 +02:00
|
|
|
default "2.6.34.7" if BR2_KERNEL_HEADERS_2_6_34
|
2010-11-23 10:33:15 +01:00
|
|
|
default "2.6.35.9" if BR2_KERNEL_HEADERS_2_6_35
|
2010-12-10 10:47:25 +01:00
|
|
|
default "2.6.36.2" if BR2_KERNEL_HEADERS_2_6_36
|
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
|