Config.in.host 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  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_18
  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. depends on !BR2_riscv
  26. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
  27. config BR2_KERNEL_HEADERS_4_1
  28. bool "Linux 4.1.x kernel headers"
  29. depends on !BR2_riscv
  30. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
  31. config BR2_KERNEL_HEADERS_4_4
  32. bool "Linux 4.4.x kernel headers"
  33. depends on !BR2_riscv
  34. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_4
  35. config BR2_KERNEL_HEADERS_4_9
  36. bool "Linux 4.9.x kernel headers"
  37. depends on !BR2_riscv
  38. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  39. config BR2_KERNEL_HEADERS_4_14
  40. bool "Linux 4.14.x kernel headers"
  41. depends on !BR2_riscv
  42. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14
  43. config BR2_KERNEL_HEADERS_4_16
  44. bool "Linux 4.16.x kernel headers"
  45. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_16
  46. config BR2_KERNEL_HEADERS_4_18
  47. bool "Linux 4.18.x kernel headers"
  48. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_18
  49. config BR2_KERNEL_HEADERS_VERSION
  50. bool "Manually specified Linux version"
  51. help
  52. This option allows you to use a specific official version from
  53. kernel.org, like 2.6.x, 2.6.x.y, 3.x.y, ...
  54. Note: you cannot use this option to select a _longterm_ 2.6
  55. kernel, because these kernels are not located at the standard
  56. URL at kernel.org. Instead, select "Custom tarball" and
  57. specify the right URL directly.
  58. config BR2_KERNEL_HEADERS_CUSTOM_TARBALL
  59. bool "Custom tarball"
  60. help
  61. This option allows you to specify a URL pointing to a kernel
  62. source tarball. This URL can use any protocol recognized by
  63. Buildroot, like http://, ftp://, file:// or scp://.
  64. When pointing to a local tarball using file://, you may want
  65. to use a make variable like $(TOPDIR) to reference the root of
  66. the Buildroot tree.
  67. config BR2_KERNEL_HEADERS_CUSTOM_GIT
  68. bool "Custom Git repository"
  69. help
  70. This option allows Buildroot to get the Linux kernel source
  71. code from a Git repository.
  72. endchoice
  73. config BR2_DEFAULT_KERNEL_VERSION
  74. string "linux version"
  75. depends on BR2_KERNEL_HEADERS_VERSION
  76. help
  77. Specify the version you want to use.
  78. E.G.: 3.6.10
  79. config BR2_KERNEL_HEADERS_CUSTOM_TARBALL_LOCATION
  80. string "URL of custom kernel tarball"
  81. depends on BR2_KERNEL_HEADERS_CUSTOM_TARBALL
  82. if BR2_KERNEL_HEADERS_CUSTOM_GIT
  83. config BR2_KERNEL_HEADERS_CUSTOM_REPO_URL
  84. string "URL of custom repository"
  85. config BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION
  86. string "Custom repository version"
  87. help
  88. Revision to use in the typical format used by
  89. Git/Mercurial/Subversion E.G. a sha id, a tag, branch, ..
  90. endif
  91. choice
  92. bool "Custom kernel headers series"
  93. depends on BR2_KERNEL_HEADERS_VERSION || BR2_KERNEL_HEADERS_AS_KERNEL || \
  94. BR2_KERNEL_HEADERS_CUSTOM_TARBALL || BR2_KERNEL_HEADERS_CUSTOM_GIT
  95. help
  96. Specify the kernel headers series you manually selected,
  97. above.
  98. This is used to hide/show some packages that have strict
  99. requirements on the version of kernel headers.
  100. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_18
  101. bool "4.18.x"
  102. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_18
  103. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_17
  104. bool "4.17.x"
  105. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_17
  106. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_16
  107. bool "4.16.x"
  108. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_16
  109. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_15
  110. bool "4.15.x"
  111. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_15
  112. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14
  113. bool "4.14.x"
  114. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14
  115. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_13
  116. bool "4.13.x"
  117. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_13
  118. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_12
  119. bool "4.12.x"
  120. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12
  121. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_11
  122. bool "4.11.x"
  123. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11
  124. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_10
  125. bool "4.10.x"
  126. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_10
  127. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9
  128. bool "4.9.x"
  129. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  130. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_8
  131. bool "4.8.x"
  132. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_8
  133. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_7
  134. bool "4.7.x"
  135. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7
  136. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_6
  137. bool "4.6.x"
  138. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_6
  139. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_5
  140. bool "4.5.x"
  141. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_5
  142. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_4
  143. bool "4.4.x"
  144. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_4
  145. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_3
  146. bool "4.3.x"
  147. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3
  148. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_2
  149. bool "4.2.x"
  150. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2
  151. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_1
  152. bool "4.1.x"
  153. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
  154. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_0
  155. bool "4.0.x"
  156. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0
  157. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_19
  158. bool "3.19.x"
  159. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_19
  160. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_18
  161. bool "3.18.x"
  162. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
  163. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_17
  164. bool "3.17.x"
  165. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17
  166. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_16
  167. bool "3.16.x"
  168. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16
  169. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_15
  170. bool "3.15.x"
  171. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
  172. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_14
  173. bool "3.14.x"
  174. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14
  175. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_13
  176. bool "3.13.x"
  177. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13
  178. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_12
  179. bool "3.12.x"
  180. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
  181. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_11
  182. bool "3.11.x"
  183. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11
  184. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_10
  185. bool "3.10.x"
  186. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
  187. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_9
  188. bool "3.9.x"
  189. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9
  190. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_8
  191. bool "3.8.x"
  192. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8
  193. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_7
  194. bool "3.7.x"
  195. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
  196. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_6
  197. bool "3.6.x"
  198. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6
  199. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_5
  200. bool "3.5.x"
  201. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5
  202. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_4
  203. bool "3.4.x"
  204. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
  205. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_3
  206. bool "3.3.x"
  207. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
  208. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_2
  209. bool "3.2.x"
  210. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
  211. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_1
  212. bool "3.1.x"
  213. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1
  214. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_0
  215. bool "3.0.x"
  216. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
  217. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_REALLY_OLD
  218. bool "2.6.x"
  219. endchoice
  220. config BR2_DEFAULT_KERNEL_HEADERS
  221. string
  222. default "3.2.102" if BR2_KERNEL_HEADERS_3_2
  223. default "4.1.52" if BR2_KERNEL_HEADERS_4_1
  224. default "4.4.169" if BR2_KERNEL_HEADERS_4_4
  225. default "4.9.149" if BR2_KERNEL_HEADERS_4_9
  226. default "4.14.92" if BR2_KERNEL_HEADERS_4_14
  227. default "4.16.18" if BR2_KERNEL_HEADERS_4_16
  228. default "4.18.20" if BR2_KERNEL_HEADERS_4_18
  229. default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
  230. default "custom" if BR2_KERNEL_HEADERS_CUSTOM_TARBALL
  231. default BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION \
  232. if BR2_KERNEL_HEADERS_CUSTOM_GIT