Braid: Updated mirror 'buildroot' to 'ae9d2e8'
[avatt.git] / buildroot / toolchain / kernel-headers / Config.in
blob13acecc94d14a49d9f749b23ccc61c3ba3d615b2
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_30
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_26
20                 depends on BR2_DEPRECATED
21                 bool "Linux 2.6.26.x kernel headers"
23         config BR2_KERNEL_HEADERS_2_6_27
24                 depends on BR2_DEPRECATED
25                 bool "Linux 2.6.27.x kernel headers"
27         config BR2_KERNEL_HEADERS_2_6_28
28                 bool "Linux 2.6.28.x kernel headers"
29                 depends on BR2_DEPRECATED
31         config BR2_KERNEL_HEADERS_2_6_29
32                 bool "Linux 2.6.29.x kernel headers"
33                 depends on BR2_DEPRECATED || BR2_RECENT
35         config BR2_KERNEL_HEADERS_2_6_30
36                 bool "Linux 2.6.30.x kernel headers"
38         config BR2_KERNEL_HEADERS_SNAP
39                 bool "Linux 2.6 snapshot"
41 endchoice
43 config BR2_KERNEL_HEADERS_RT
44         bool "use realtime (-rt) kernel patches"
45         depends on BR2_KERNEL_HEADERS_2_6_26
46         help
47           Apply Ingo's realtime extensions to linux
49 config BR2_DEFAULT_KERNEL_HEADERS
50         string
51         default "2.6.26.8"      if BR2_KERNEL_HEADERS_2_6_26
52         default "2.6.27.26"     if BR2_KERNEL_HEADERS_2_6_27
53         default "2.6.28.10"     if BR2_KERNEL_HEADERS_2_6_28
54         default "2.6.29.6"      if BR2_KERNEL_HEADERS_2_6_29
55         default "2.6.30.1"      if BR2_KERNEL_HEADERS_2_6_30
56         default "2.6"           if BR2_KERNEL_HEADERS_SNAP