summaryrefslogtreecommitdiffstats
path: root/toolchain/kernel-headers/Config.in
blob: db286e2d52f5e4f75accff1d42e9abce77171e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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.
#

choice
	prompt "Kernel Headers"
	default BR2_KERNEL_HEADERS_2_4
	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.

	config BR2_KERNEL_HEADERS_2_4
		bool "Linux 2.4.x kernel headers"

	config BR2_KERNEL_HEADERS_2_6
		bool "Linux 2.6.x kernel headers"

endchoice

config BR2_DEFAULT_KERNEL_HEADERS
	string
	default "2.4.27"    if BR2_KERNEL_HEADERS_2_4
	default "2.6.8"	    if BR2_KERNEL_HEADERS_2_6