kernel-headers: bump 2.6.29.x version
[avatt.git] / toolchain / kernel-headers / Config.in
blobbcc861d10fb11c5bef788307afe88ff1e4162733
1 # Choose the kernel headers to use for kernel-headers target. This is
2 # ignored if you are building your own kernel or using the system kernel.
5 comment "Kernel Header Options"
7 choice
8         prompt "Kernel Headers"
9         default BR2_KERNEL_HEADERS_2_6_29
11         help
12           Select the version of kernel header files you wish to use.
13           You must select the correct set of header files to match
14           the kernel you intend to use on your target system.
16           For the snapshot, you have to provide the
17           linux-2.6.tar.bz2 tarball in your download dir.
19         config BR2_KERNEL_HEADERS_2_6_23
20                 depends on BR2_DEPRECATED
21                 bool "Linux 2.6.23.x kernel headers"
23         config BR2_KERNEL_HEADERS_2_6_24
24                 depends on BR2_DEPRECATED
25                 bool "Linux 2.6.24.x kernel headers"
27         config BR2_KERNEL_HEADERS_2_6_25
28                 depends on BR2_DEPRECATED
29                 bool "Linux 2.6.25.x kernel headers"
31         config BR2_KERNEL_HEADERS_2_6_26
32                 depends on BR2_DEPRECATED
33                 bool "Linux 2.6.26.x kernel headers"
35         config BR2_KERNEL_HEADERS_2_6_27
36                 depends on BR2_DEPRECATED
37                 bool "Linux 2.6.27.x kernel headers"
39         config BR2_KERNEL_HEADERS_2_6_28
40                 bool "Linux 2.6.28.x kernel headers"
41                 depends on BR2_DEPRECATED || BR2_RECENT
43         config BR2_KERNEL_HEADERS_2_6_29
44                 bool "Linux 2.6.29.x kernel headers"
46         config BR2_KERNEL_HEADERS_SNAP
47                 bool "Linux 2.6 snapshot"
49 endchoice
51 config BR2_KERNEL_HEADERS_RT
52         bool "use realtime (-rt) kernel patches"
53         depends on BR2_KERNEL_HEADERS_2_6_24 || BR2_KERNEL_HEADERS_2_6_26
54         help
55           Apply Ingo's realtime extensions to linux
57 config BR2_DEFAULT_KERNEL_HEADERS
58         string
59         default "2.6.23"        if BR2_KERNEL_HEADERS_2_6_23
60         default "2.6.24.7"      if BR2_KERNEL_HEADERS_2_6_24
61         default "2.6.25.19"     if BR2_KERNEL_HEADERS_2_6_25
62         default "2.6.26.8"      if BR2_KERNEL_HEADERS_2_6_26
63         default "2.6.27.21"     if BR2_KERNEL_HEADERS_2_6_27
64         default "2.6.28.9"      if BR2_KERNEL_HEADERS_2_6_28
65         default "2.6.29.1"      if BR2_KERNEL_HEADERS_2_6_29
66         default "2.6"           if BR2_KERNEL_HEADERS_SNAP