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"
|
2009-09-10 10:30:54 +02:00
|
|
|
default BR2_KERNEL_HEADERS_2_6_31
|
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.
|
|
|
|
|
2008-08-04 21:07:21 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_26
|
2009-01-15 09:43:33 +01:00
|
|
|
depends on BR2_DEPRECATED
|
2008-08-04 21:07:21 +02:00
|
|
|
bool "Linux 2.6.26.x kernel headers"
|
|
|
|
|
2008-10-10 10:25:02 +02:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_27
|
2009-03-24 10:18:09 +01:00
|
|
|
depends on BR2_DEPRECATED
|
2008-10-10 10:25:02 +02:00
|
|
|
bool "Linux 2.6.27.x kernel headers"
|
|
|
|
|
2008-12-28 14:50:45 +01:00
|
|
|
config BR2_KERNEL_HEADERS_2_6_28
|
|
|
|
bool "Linux 2.6.28.x kernel headers"
|
2009-06-11 12:26:16 +02:00
|
|
|
depends on BR2_DEPRECATED
|
2009-03-24 10:18:09 +01:00
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_2_6_29
|
|
|
|
bool "Linux 2.6.29.x kernel headers"
|
2009-09-10 10:30:54 +02:00
|
|
|
depends on BR2_DEPRECATED
|
2009-06-11 12:26:16 +02:00
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_2_6_30
|
|
|
|
bool "Linux 2.6.30.x kernel headers"
|
2009-09-10 10:30:54 +02:00
|
|
|
depends on BR2_DEPRECATED || BR2_RECENT
|
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_2_6_31
|
|
|
|
bool "Linux 2.6.31.x kernel headers"
|
2008-12-28 14:50:45 +01:00
|
|
|
|
2007-09-25 13:38:20 +02:00
|
|
|
config BR2_KERNEL_HEADERS_SNAP
|
|
|
|
bool "Linux 2.6 snapshot"
|
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
endchoice
|
|
|
|
|
2007-09-12 06:06:54 +02:00
|
|
|
config BR2_KERNEL_HEADERS_RT
|
|
|
|
bool "use realtime (-rt) kernel patches"
|
2009-06-11 12:27:52 +02:00
|
|
|
depends on BR2_KERNEL_HEADERS_2_6_26
|
2007-09-12 06:06:54 +02:00
|
|
|
help
|
|
|
|
Apply Ingo's realtime extensions to linux
|
|
|
|
|
2004-10-09 03:06:03 +02:00
|
|
|
config BR2_DEFAULT_KERNEL_HEADERS
|
|
|
|
string
|
2008-11-30 10:52:06 +01:00
|
|
|
default "2.6.26.8" if BR2_KERNEL_HEADERS_2_6_26
|
2009-09-25 09:58:43 +02:00
|
|
|
default "2.6.27.35" if BR2_KERNEL_HEADERS_2_6_27
|
2009-05-04 11:22:04 +02:00
|
|
|
default "2.6.28.10" if BR2_KERNEL_HEADERS_2_6_28
|
2009-07-03 07:19:31 +02:00
|
|
|
default "2.6.29.6" if BR2_KERNEL_HEADERS_2_6_29
|
2009-09-25 09:58:43 +02:00
|
|
|
default "2.6.30.8" if BR2_KERNEL_HEADERS_2_6_30
|
|
|
|
default "2.6.31.1" if BR2_KERNEL_HEADERS_2_6_31
|
2007-10-12 17:10:27 +02:00
|
|
|
default "2.6" if BR2_KERNEL_HEADERS_SNAP
|
2007-08-20 00:01:27 +02:00
|
|
|
|