Config.in.host 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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_12
  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_SINCE_2013_02 && !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_SINCE_2013_02 && !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_SINCE_2013_02 && !BR2_arc
  31. config BR2_KERNEL_HEADERS_3_6
  32. bool "Linux 3.6.x kernel headers"
  33. depends on BR2_DEPRECATED_SINCE_2013_05 && !BR2_arc
  34. config BR2_KERNEL_HEADERS_3_7
  35. bool "Linux 3.7.x kernel headers"
  36. depends on BR2_DEPRECATED_SINCE_2013_05 && !BR2_arc
  37. config BR2_KERNEL_HEADERS_3_8
  38. bool "Linux 3.8.x kernel headers"
  39. depends on BR2_DEPRECATED_SINCE_2013_08 && !BR2_arc
  40. config BR2_KERNEL_HEADERS_3_9
  41. bool "Linux 3.9.x kernel headers"
  42. depends on BR2_DEPRECATED_SINCE_2013_11
  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_3_12
  48. bool "Linux 3.12.x kernel headers"
  49. config BR2_KERNEL_HEADERS_VERSION
  50. bool "Manually specified Linux version"
  51. config BR2_KERNEL_HEADERS_SNAP
  52. bool "Local Linux snapshot (linux-2.6.tar.bz2)"
  53. endchoice
  54. config BR2_DEFAULT_KERNEL_VERSION
  55. string "linux version"
  56. depends on BR2_KERNEL_HEADERS_VERSION
  57. help
  58. Specify the version you want to use.
  59. E.G.: 3.6.10
  60. config BR2_DEFAULT_KERNEL_HEADERS
  61. string
  62. default "3.0.101" if BR2_KERNEL_HEADERS_3_0
  63. default "3.1.10" if BR2_KERNEL_HEADERS_3_1
  64. default "3.2.54" if BR2_KERNEL_HEADERS_3_2
  65. default "3.3.8" if BR2_KERNEL_HEADERS_3_3
  66. default "3.4.77" if BR2_KERNEL_HEADERS_3_4
  67. default "3.5.7" if BR2_KERNEL_HEADERS_3_5
  68. default "3.6.11" if BR2_KERNEL_HEADERS_3_6
  69. default "3.7.10" if BR2_KERNEL_HEADERS_3_7
  70. default "3.8.13" if BR2_KERNEL_HEADERS_3_8
  71. default "3.9.11" if BR2_KERNEL_HEADERS_3_9
  72. default "3.10.27" if BR2_KERNEL_HEADERS_3_10
  73. default "3.11.10" if BR2_KERNEL_HEADERS_3_11
  74. default "3.12.8" if BR2_KERNEL_HEADERS_3_12
  75. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  76. default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION