Config.in.host 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. config BR2_PACKAGE_HOST_LINUX_HEADERS
  2. bool
  3. comment "Kernel Header Options"
  4. choice
  5. prompt "Kernel Headers"
  6. default BR2_KERNEL_HEADERS_3_11
  7. help
  8. Select the version of kernel header files you wish to use.
  9. You must select the correct set of header files to match
  10. the kernel you intend to use on your target system.
  11. For the snapshot, you have to provide the
  12. linux-2.6.tar.bz2 tarball in your download dir.
  13. config BR2_KERNEL_HEADERS_3_0
  14. bool "Linux 3.0.x kernel headers"
  15. depends on !BR2_arc
  16. config BR2_KERNEL_HEADERS_3_1
  17. bool "Linux 3.1.x kernel headers"
  18. depends on BR2_DEPRECATED && !BR2_arc
  19. config BR2_KERNEL_HEADERS_3_2
  20. bool "Linux 3.2.x kernel headers"
  21. depends on !BR2_arc
  22. config BR2_KERNEL_HEADERS_3_3
  23. bool "Linux 3.3.x kernel headers"
  24. depends on BR2_DEPRECATED && !BR2_arc
  25. config BR2_KERNEL_HEADERS_3_4
  26. bool "Linux 3.4.x kernel headers"
  27. depends on !BR2_arc
  28. config BR2_KERNEL_HEADERS_3_5
  29. bool "Linux 3.5.x kernel headers"
  30. depends on BR2_DEPRECATED && !BR2_arc
  31. config BR2_KERNEL_HEADERS_3_6
  32. bool "Linux 3.6.x kernel headers"
  33. depends on BR2_DEPRECATED && !BR2_arc
  34. config BR2_KERNEL_HEADERS_3_7
  35. bool "Linux 3.7.x kernel headers"
  36. depends on BR2_DEPRECATED && !BR2_arc
  37. config BR2_KERNEL_HEADERS_3_8
  38. bool "Linux 3.8.x kernel headers"
  39. depends on BR2_DEPRECATED && !BR2_arc
  40. config BR2_KERNEL_HEADERS_3_9
  41. bool "Linux 3.9.x kernel headers"
  42. depends on BR2_DEPRECATED
  43. config BR2_KERNEL_HEADERS_3_10
  44. bool "Linux 3.10.x kernel headers"
  45. config BR2_KERNEL_HEADERS_3_11
  46. bool "Linux 3.11.x kernel headers"
  47. config BR2_KERNEL_HEADERS_VERSION
  48. bool "Manually specified Linux version"
  49. config BR2_KERNEL_HEADERS_SNAP
  50. bool "Local Linux snapshot (linux-2.6.tar.bz2)"
  51. endchoice
  52. config BR2_DEFAULT_KERNEL_VERSION
  53. string "linux version"
  54. depends on BR2_KERNEL_HEADERS_VERSION
  55. help
  56. Specify the version you want to use.
  57. E.G.: 3.6.10
  58. config BR2_DEFAULT_KERNEL_HEADERS
  59. string
  60. default "3.0.96" if BR2_KERNEL_HEADERS_3_0
  61. default "3.1.10" if BR2_KERNEL_HEADERS_3_1
  62. default "3.2.51" if BR2_KERNEL_HEADERS_3_2
  63. default "3.3.8" if BR2_KERNEL_HEADERS_3_3
  64. default "3.4.62" if BR2_KERNEL_HEADERS_3_4
  65. default "3.5.7" if BR2_KERNEL_HEADERS_3_5
  66. default "3.6.11" if BR2_KERNEL_HEADERS_3_6
  67. default "3.7.10" if BR2_KERNEL_HEADERS_3_7
  68. default "3.8.13" if BR2_KERNEL_HEADERS_3_8
  69. default "3.9.11" if BR2_KERNEL_HEADERS_3_9
  70. default "3.10.12" if BR2_KERNEL_HEADERS_3_10
  71. default "3.11.1" if BR2_KERNEL_HEADERS_3_11
  72. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  73. default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION