Config.in 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.
  3. #
  4. comment "Kernel Header Options"
  5. choice
  6. prompt "Kernel Headers"
  7. default BR2_KERNEL_HEADERS_3_9
  8. help
  9. Select the version of kernel header files you wish to use.
  10. You must select the correct set of header files to match
  11. the kernel you intend to use on your target system.
  12. For the snapshot, you have to provide the
  13. linux-2.6.tar.bz2 tarball in your download dir.
  14. config BR2_KERNEL_HEADERS_3_0
  15. bool "Linux 3.0.x kernel headers"
  16. config BR2_KERNEL_HEADERS_3_1
  17. bool "Linux 3.1.x kernel headers"
  18. depends on BR2_DEPRECATED
  19. config BR2_KERNEL_HEADERS_3_2
  20. bool "Linux 3.2.x kernel headers"
  21. config BR2_KERNEL_HEADERS_3_3
  22. bool "Linux 3.3.x kernel headers"
  23. depends on BR2_DEPRECATED
  24. config BR2_KERNEL_HEADERS_3_4
  25. bool "Linux 3.4.x kernel headers"
  26. config BR2_KERNEL_HEADERS_3_5
  27. bool "Linux 3.5.x kernel headers"
  28. depends on BR2_DEPRECATED
  29. config BR2_KERNEL_HEADERS_3_6
  30. bool "Linux 3.6.x kernel headers"
  31. depends on BR2_DEPRECATED
  32. config BR2_KERNEL_HEADERS_3_7
  33. bool "Linux 3.7.x kernel headers"
  34. depends on BR2_DEPRECATED
  35. config BR2_KERNEL_HEADERS_3_8
  36. bool "Linux 3.8.x kernel headers"
  37. config BR2_KERNEL_HEADERS_3_9
  38. bool "Linux 3.9.x kernel headers"
  39. config BR2_KERNEL_HEADERS_VERSION
  40. bool "Manually specified Linux version"
  41. config BR2_KERNEL_HEADERS_SNAP
  42. bool "Local Linux snapshot (linux-2.6.tar.bz2)"
  43. endchoice
  44. config BR2_DEFAULT_KERNEL_VERSION
  45. string "linux version"
  46. depends on BR2_KERNEL_HEADERS_VERSION
  47. help
  48. Specify the version you want to use.
  49. E.G.: 3.6.10
  50. config BR2_DEFAULT_KERNEL_HEADERS
  51. string
  52. default "3.0.76" if BR2_KERNEL_HEADERS_3_0
  53. default "3.1.10" if BR2_KERNEL_HEADERS_3_1
  54. default "3.2.44" if BR2_KERNEL_HEADERS_3_2
  55. default "3.3.8" if BR2_KERNEL_HEADERS_3_3
  56. default "3.4.43" if BR2_KERNEL_HEADERS_3_4
  57. default "3.5.7" if BR2_KERNEL_HEADERS_3_5
  58. default "3.6.11" if BR2_KERNEL_HEADERS_3_6
  59. default "3.7.10" if BR2_KERNEL_HEADERS_3_7
  60. default "3.8.11" if BR2_KERNEL_HEADERS_3_8
  61. default "3.9" if BR2_KERNEL_HEADERS_3_9
  62. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  63. default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION