Config.in.host 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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_14
  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. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
  17. config BR2_KERNEL_HEADERS_3_2
  18. bool "Linux 3.2.x kernel headers"
  19. depends on !BR2_arc
  20. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
  21. config BR2_KERNEL_HEADERS_3_4
  22. bool "Linux 3.4.x kernel headers"
  23. depends on !BR2_arc
  24. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
  25. config BR2_KERNEL_HEADERS_3_6
  26. bool "Linux 3.6.x kernel headers"
  27. depends on BR2_DEPRECATED_SINCE_2013_05 && !BR2_arc
  28. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6
  29. config BR2_KERNEL_HEADERS_3_7
  30. bool "Linux 3.7.x kernel headers"
  31. depends on BR2_DEPRECATED_SINCE_2013_05 && !BR2_arc
  32. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
  33. config BR2_KERNEL_HEADERS_3_8
  34. bool "Linux 3.8.x kernel headers"
  35. depends on BR2_DEPRECATED_SINCE_2013_08 && !BR2_arc
  36. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8
  37. config BR2_KERNEL_HEADERS_3_9
  38. bool "Linux 3.9.x kernel headers"
  39. depends on BR2_DEPRECATED_SINCE_2013_11
  40. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9
  41. config BR2_KERNEL_HEADERS_3_10
  42. bool "Linux 3.10.x kernel headers"
  43. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
  44. config BR2_KERNEL_HEADERS_3_11
  45. bool "Linux 3.11.x kernel headers"
  46. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11
  47. config BR2_KERNEL_HEADERS_3_12
  48. bool "Linux 3.12.x kernel headers"
  49. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
  50. config BR2_KERNEL_HEADERS_3_13
  51. bool "Linux 3.13.x kernel headers"
  52. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13
  53. config BR2_KERNEL_HEADERS_3_14
  54. bool "Linux 3.14.x kernel headers"
  55. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14
  56. config BR2_KERNEL_HEADERS_VERSION
  57. bool "Manually specified Linux version"
  58. endchoice
  59. config BR2_DEFAULT_KERNEL_VERSION
  60. string "linux version"
  61. depends on BR2_KERNEL_HEADERS_VERSION
  62. help
  63. Specify the version you want to use.
  64. E.G.: 3.6.10
  65. choice
  66. bool "Custom kernel headers series"
  67. depends on BR2_KERNEL_HEADERS_VERSION
  68. default BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_REALLY_OLD
  69. help
  70. Set to the kernel headers series you manually set above.
  71. This is used to hide/show some packages that have strict
  72. requirements on the version of kernel headers.
  73. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_14
  74. bool "3.14.x"
  75. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14
  76. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_13
  77. bool "3.13.x"
  78. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13
  79. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_12
  80. bool "3.12.x"
  81. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
  82. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_11
  83. bool "3.11.x"
  84. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11
  85. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_10
  86. bool "3.10.x"
  87. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
  88. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_9
  89. bool "3.9.x"
  90. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9
  91. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_8
  92. bool "3.8.x"
  93. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8
  94. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_7
  95. bool "3.7.x"
  96. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
  97. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_6
  98. bool "3.6.x"
  99. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6
  100. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_5
  101. bool "3.5.x"
  102. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5
  103. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_4
  104. bool "3.4.x"
  105. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
  106. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_3
  107. bool "3.3.x"
  108. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
  109. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_2
  110. bool "3.2.x"
  111. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
  112. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_1
  113. bool "3.1.x"
  114. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1
  115. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_0
  116. bool "3.0.x"
  117. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
  118. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_REALLY_OLD
  119. bool "2.6.x"
  120. endchoice
  121. config BR2_DEFAULT_KERNEL_HEADERS
  122. string
  123. default "3.0.101" if BR2_KERNEL_HEADERS_3_0
  124. default "3.2.56" if BR2_KERNEL_HEADERS_3_2
  125. default "3.4.85" if BR2_KERNEL_HEADERS_3_4
  126. default "3.6.11" if BR2_KERNEL_HEADERS_3_6
  127. default "3.7.10" if BR2_KERNEL_HEADERS_3_7
  128. default "3.8.13" if BR2_KERNEL_HEADERS_3_8
  129. default "3.9.11" if BR2_KERNEL_HEADERS_3_9
  130. default "3.10.35" if BR2_KERNEL_HEADERS_3_10
  131. default "3.11.10" if BR2_KERNEL_HEADERS_3_11
  132. default "3.12.15" if BR2_KERNEL_HEADERS_3_12
  133. default "3.13.8" if BR2_KERNEL_HEADERS_3_13
  134. default "3.14" if BR2_KERNEL_HEADERS_3_14
  135. default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION