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"
|
2012-12-11 08:58:32 +01:00
|
|
|
default BR2_KERNEL_HEADERS_3_7
|
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.
|
|
|
|
|
2011-07-22 09:08:36 +02:00
|
|
|
config BR2_KERNEL_HEADERS_3_0
|
|
|
|
bool "Linux 3.0.x kernel headers"
|
|
|
|
|
2011-10-24 16:54:02 +02:00
|
|
|
config BR2_KERNEL_HEADERS_3_1
|
|
|
|
bool "Linux 3.1.x kernel headers"
|
2012-12-11 08:58:32 +01:00
|
|
|
depends on BR2_DEPRECATED
|
2011-10-24 16:54:02 +02:00
|
|
|
|
2012-01-05 17:30:14 +01:00
|
|
|
config BR2_KERNEL_HEADERS_3_2
|
|
|
|
bool "Linux 3.2.x kernel headers"
|
|
|
|
|
2012-03-19 11:21:48 +01:00
|
|
|
config BR2_KERNEL_HEADERS_3_3
|
|
|
|
bool "Linux 3.3.x kernel headers"
|
2012-12-11 08:58:32 +01:00
|
|
|
depends on BR2_DEPRECATED
|
2012-03-19 11:21:48 +01:00
|
|
|
|
2012-05-21 19:39:14 +02:00
|
|
|
config BR2_KERNEL_HEADERS_3_4
|
|
|
|
bool "Linux 3.4.x kernel headers"
|
|
|
|
|
2012-09-04 13:13:10 +02:00
|
|
|
config BR2_KERNEL_HEADERS_3_5
|
|
|
|
bool "Linux 3.5.x kernel headers"
|
2012-12-11 08:58:32 +01:00
|
|
|
depends on BR2_DEPRECATED
|
2012-09-04 13:13:10 +02:00
|
|
|
|
2012-10-01 22:14:35 +02:00
|
|
|
config BR2_KERNEL_HEADERS_3_6
|
|
|
|
bool "Linux 3.6.x kernel headers"
|
|
|
|
|
2012-12-11 08:58:32 +01:00
|
|
|
config BR2_KERNEL_HEADERS_3_7
|
|
|
|
bool "Linux 3.7.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.
|
2012-12-11 08:58:32 +01:00
|
|
|
E.G.: 3.6.10
|
2009-10-07 22:08:25 +02:00
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
config BR2_DEFAULT_KERNEL_HEADERS
|
|
|
|
string
|
2012-12-11 08:58:32 +01:00
|
|
|
default "3.0.56" if BR2_KERNEL_HEADERS_3_0
|
2012-01-18 19:14:42 +01:00
|
|
|
default "3.1.10" if BR2_KERNEL_HEADERS_3_1
|
2012-12-06 15:32:05 +01:00
|
|
|
default "3.2.35" if BR2_KERNEL_HEADERS_3_2
|
2012-06-04 11:40:34 +02:00
|
|
|
default "3.3.8" if BR2_KERNEL_HEADERS_3_3
|
2012-12-11 08:58:32 +01:00
|
|
|
default "3.4.23" if BR2_KERNEL_HEADERS_3_4
|
2012-10-12 17:26:00 +02:00
|
|
|
default "3.5.7" if BR2_KERNEL_HEADERS_3_5
|
2012-12-11 08:58:32 +01:00
|
|
|
default "3.6.10" if BR2_KERNEL_HEADERS_3_6
|
|
|
|
default "3.7" if BR2_KERNEL_HEADERS_3_7
|
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
|