Config.in.host 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. comment "Kernel Header Options"
  2. config BR2_PACKAGE_HOST_LINUX_HEADERS
  3. bool
  4. choice
  5. prompt "Kernel Headers"
  6. default BR2_KERNEL_HEADERS_AS_KERNEL if BR2_LINUX_KERNEL
  7. default BR2_KERNEL_HEADERS_4_13
  8. help
  9. Select the kernel version to get headers from.
  10. The kernel headers must be at least as old as the oldest
  11. kernel you intend to run on your target.
  12. If you use Buildroot to build a kernel, then you can use
  13. the sources from that kernel as source for the headers.
  14. If you choose a custom version of the kernel headers, or
  15. choose to use the same sources as the kernel, you'll have to
  16. select (below) the series of that kernel, so that Buildroot
  17. can show or hide packages that have strong requirements on the
  18. kernel headers.
  19. config BR2_KERNEL_HEADERS_AS_KERNEL
  20. bool "Same as kernel being built"
  21. depends on BR2_LINUX_KERNEL
  22. config BR2_KERNEL_HEADERS_3_2
  23. bool "Linux 3.2.x kernel headers"
  24. depends on !BR2_aarch64 && !BR2_arc && !BR2_nios2
  25. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
  26. config BR2_KERNEL_HEADERS_3_4
  27. bool "Linux 3.4.x kernel headers"
  28. depends on !BR2_aarch64 && !BR2_arc && !BR2_nios2
  29. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
  30. config BR2_KERNEL_HEADERS_3_10
  31. bool "Linux 3.10.x kernel headers"
  32. depends on !BR2_nios2
  33. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
  34. config BR2_KERNEL_HEADERS_3_12
  35. bool "Linux 3.12.x kernel headers"
  36. depends on !BR2_nios2
  37. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
  38. config BR2_KERNEL_HEADERS_4_1
  39. bool "Linux 4.1.x kernel headers"
  40. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
  41. config BR2_KERNEL_HEADERS_4_4
  42. bool "Linux 4.4.x kernel headers"
  43. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_4
  44. config BR2_KERNEL_HEADERS_4_9
  45. bool "Linux 4.9.x kernel headers"
  46. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  47. config BR2_KERNEL_HEADERS_4_10
  48. bool "Linux 4.10.x kernel headers"
  49. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_10
  50. config BR2_KERNEL_HEADERS_4_11
  51. bool "Linux 4.11.x kernel headers"
  52. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11
  53. config BR2_KERNEL_HEADERS_4_12
  54. bool "Linux 4.12.x kernel headers"
  55. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12
  56. config BR2_KERNEL_HEADERS_4_13
  57. bool "Linux 4.13.x kernel headers"
  58. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_13
  59. config BR2_KERNEL_HEADERS_VERSION
  60. bool "Manually specified Linux version"
  61. endchoice
  62. config BR2_DEFAULT_KERNEL_VERSION
  63. string "linux version"
  64. depends on BR2_KERNEL_HEADERS_VERSION
  65. help
  66. Specify the version you want to use.
  67. E.G.: 3.6.10
  68. choice
  69. bool "Custom kernel headers series"
  70. depends on BR2_KERNEL_HEADERS_VERSION || BR2_KERNEL_HEADERS_AS_KERNEL
  71. help
  72. Specify the kernel headers series you manually selected,
  73. above.
  74. This is used to hide/show some packages that have strict
  75. requirements on the version of kernel headers.
  76. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_13
  77. bool "4.13.x"
  78. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_13
  79. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_12
  80. bool "4.12.x"
  81. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12
  82. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_11
  83. bool "4.11.x"
  84. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11
  85. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_10
  86. bool "4.10.x"
  87. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_10
  88. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9
  89. bool "4.9.x"
  90. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  91. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_8
  92. bool "4.8.x"
  93. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_8
  94. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_7
  95. bool "4.7.x"
  96. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7
  97. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_6
  98. bool "4.6.x"
  99. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_6
  100. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_5
  101. bool "4.5.x"
  102. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_5
  103. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_4
  104. bool "4.4.x"
  105. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_4
  106. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_3
  107. bool "4.3.x"
  108. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3
  109. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_2
  110. bool "4.2.x"
  111. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2
  112. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_1
  113. bool "4.1.x"
  114. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
  115. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_0
  116. bool "4.0.x"
  117. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0
  118. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_19
  119. bool "3.19.x"
  120. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_19
  121. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_18
  122. bool "3.18.x"
  123. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
  124. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_17
  125. bool "3.17.x"
  126. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17
  127. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_16
  128. bool "3.16.x"
  129. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16
  130. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_15
  131. bool "3.15.x"
  132. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
  133. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_14
  134. bool "3.14.x"
  135. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14
  136. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_13
  137. bool "3.13.x"
  138. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13
  139. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_12
  140. bool "3.12.x"
  141. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
  142. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_11
  143. bool "3.11.x"
  144. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11
  145. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_10
  146. bool "3.10.x"
  147. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
  148. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_9
  149. bool "3.9.x"
  150. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9
  151. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_8
  152. bool "3.8.x"
  153. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8
  154. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_7
  155. bool "3.7.x"
  156. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
  157. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_6
  158. bool "3.6.x"
  159. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6
  160. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_5
  161. bool "3.5.x"
  162. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5
  163. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_4
  164. bool "3.4.x"
  165. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
  166. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_3
  167. bool "3.3.x"
  168. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
  169. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_2
  170. bool "3.2.x"
  171. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
  172. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_1
  173. bool "3.1.x"
  174. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1
  175. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_0
  176. bool "3.0.x"
  177. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
  178. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_REALLY_OLD
  179. bool "2.6.x"
  180. endchoice
  181. config BR2_DEFAULT_KERNEL_HEADERS
  182. string
  183. default "3.2.98" if BR2_KERNEL_HEADERS_3_2
  184. default "3.4.113" if BR2_KERNEL_HEADERS_3_4
  185. default "3.10.108" if BR2_KERNEL_HEADERS_3_10
  186. default "3.12.74" if BR2_KERNEL_HEADERS_3_12
  187. default "4.1.49" if BR2_KERNEL_HEADERS_4_1
  188. default "4.4.113" if BR2_KERNEL_HEADERS_4_4
  189. default "4.9.78" if BR2_KERNEL_HEADERS_4_9
  190. default "4.10.17" if BR2_KERNEL_HEADERS_4_10
  191. default "4.11.12" if BR2_KERNEL_HEADERS_4_11
  192. default "4.12.14" if BR2_KERNEL_HEADERS_4_12
  193. default "4.13.16" if BR2_KERNEL_HEADERS_4_13
  194. default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION