Config.in.host 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. comment "Kernel Header Options"
  2. choice
  3. prompt "Kernel Headers"
  4. default BR2_KERNEL_HEADERS_AS_KERNEL if BR2_LINUX_KERNEL
  5. default BR2_KERNEL_HEADERS_6_18
  6. help
  7. Select the kernel version to get headers from.
  8. The kernel headers must be at least as old as the oldest
  9. kernel you intend to run on your target.
  10. If you use Buildroot to build a kernel, then you can use
  11. the sources from that kernel as source for the headers.
  12. If you choose a custom version of the kernel headers, or
  13. choose to use the same sources as the kernel, you'll have to
  14. select (below) the series of that kernel, so that Buildroot
  15. can show or hide packages that have strong requirements on the
  16. kernel headers.
  17. config BR2_KERNEL_HEADERS_AS_KERNEL
  18. bool "Same as kernel being built"
  19. depends on BR2_LINUX_KERNEL
  20. select BR2_KERNEL_HEADERS_LATEST if BR2_LINUX_KERNEL_LATEST_VERSION
  21. config BR2_KERNEL_HEADERS_5_10
  22. bool "Linux 5.10.x kernel headers"
  23. # Support was introduced in Linux 5.19
  24. depends on !BR2_loongarch64
  25. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_10
  26. config BR2_KERNEL_HEADERS_5_15
  27. bool "Linux 5.15.x kernel headers"
  28. # Support was introduced in Linux 5.19
  29. depends on !BR2_loongarch64
  30. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_15
  31. config BR2_KERNEL_HEADERS_6_1
  32. bool "Linux 6.1.x kernel headers"
  33. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_1
  34. config BR2_KERNEL_HEADERS_6_6
  35. bool "Linux 6.6.x kernel headers"
  36. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
  37. config BR2_KERNEL_HEADERS_6_12
  38. bool "Linux 6.12.x kernel headers"
  39. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12
  40. config BR2_KERNEL_HEADERS_6_18
  41. bool "Linux 6.18.x kernel headers"
  42. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_18
  43. select BR2_KERNEL_HEADERS_LATEST
  44. config BR2_KERNEL_HEADERS_VERSION
  45. bool "Manually specified Linux version"
  46. help
  47. This option allows you to use a specific official version from
  48. kernel.org, like 2.6.x, 2.6.x.y, 3.x.y, ...
  49. Note: you cannot use this option to select a _longterm_ 2.6
  50. kernel, because these kernels are not located at the standard
  51. URL at kernel.org. Instead, select "Custom tarball" and
  52. specify the right URL directly.
  53. config BR2_KERNEL_HEADERS_CUSTOM_TARBALL
  54. bool "Custom tarball"
  55. help
  56. This option allows you to specify a URL pointing to a kernel
  57. source tarball. This URL can use any protocol recognized by
  58. Buildroot, like http://, ftp://, file:// or scp://.
  59. When pointing to a local tarball using file://, you may want
  60. to use a make variable like $(TOPDIR) to reference the root of
  61. the Buildroot tree.
  62. config BR2_KERNEL_HEADERS_CUSTOM_GIT
  63. bool "Custom Git repository"
  64. help
  65. This option allows Buildroot to get the Linux kernel source
  66. code from a Git repository.
  67. endchoice
  68. # Select this for the latest kernel headers version (for license hashes)
  69. config BR2_KERNEL_HEADERS_LATEST
  70. bool
  71. config BR2_DEFAULT_KERNEL_VERSION
  72. string "linux version"
  73. depends on BR2_KERNEL_HEADERS_VERSION
  74. help
  75. Specify the version you want to use.
  76. E.G.: 3.6.10
  77. config BR2_KERNEL_HEADERS_CUSTOM_TARBALL_LOCATION
  78. string "URL of custom kernel tarball"
  79. depends on BR2_KERNEL_HEADERS_CUSTOM_TARBALL
  80. if BR2_KERNEL_HEADERS_CUSTOM_GIT
  81. config BR2_KERNEL_HEADERS_CUSTOM_REPO_URL
  82. string "URL of custom repository"
  83. config BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION
  84. string "Custom repository version"
  85. help
  86. Revision to use in the typical format used by
  87. Git/Mercurial/Subversion E.G. a sha id, a tag, branch, ..
  88. endif
  89. choice
  90. bool "Custom kernel headers series"
  91. default BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_REALLY_OLD
  92. depends on !BR2_LINUX_KERNEL_LATEST_VERSION || !BR2_KERNEL_HEADERS_AS_KERNEL
  93. depends on !BR2_LINUX_KERNEL_LATEST_CIP_VERSION || !BR2_KERNEL_HEADERS_AS_KERNEL
  94. depends on !BR2_LINUX_KERNEL_LATEST_CIP_RT_VERSION || !BR2_KERNEL_HEADERS_AS_KERNEL
  95. depends on BR2_KERNEL_HEADERS_VERSION || BR2_KERNEL_HEADERS_AS_KERNEL || \
  96. BR2_KERNEL_HEADERS_CUSTOM_TARBALL || BR2_KERNEL_HEADERS_CUSTOM_GIT
  97. help
  98. Specify the kernel headers series you manually selected,
  99. above.
  100. This is used to hide/show some packages that have strict
  101. requirements on the version of kernel headers.
  102. If your kernel headers are more recent than the latest version
  103. in the choice, then select the latest version.
  104. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_18
  105. bool "6.18.x or later"
  106. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_18
  107. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_17
  108. bool "6.17.x"
  109. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_17
  110. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_16
  111. bool "6.16.x"
  112. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_16
  113. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_15
  114. bool "6.15.x"
  115. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_15
  116. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_14
  117. bool "6.14.x"
  118. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_14
  119. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_13
  120. bool "6.13.x"
  121. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_13
  122. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_12
  123. bool "6.12.x"
  124. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12
  125. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_11
  126. bool "6.11.x"
  127. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_11
  128. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_10
  129. bool "6.10.x"
  130. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_10
  131. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_9
  132. bool "6.9.x"
  133. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_9
  134. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_8
  135. bool "6.8.x"
  136. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_8
  137. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_7
  138. bool "6.7.x"
  139. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_7
  140. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6
  141. bool "6.6.x"
  142. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
  143. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_5
  144. bool "6.5.x"
  145. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_5
  146. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_4
  147. bool "6.4.x"
  148. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_4
  149. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_3
  150. bool "6.3.x"
  151. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_3
  152. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_2
  153. bool "6.2.x"
  154. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_2
  155. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1
  156. bool "6.1.x"
  157. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_1
  158. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_0
  159. bool "6.0.x"
  160. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_0
  161. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_19
  162. bool "5.19.x"
  163. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_19
  164. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_18
  165. bool "5.18.x"
  166. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_18
  167. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_17
  168. bool "5.17.x"
  169. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_17
  170. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_16
  171. bool "5.16.x"
  172. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_16
  173. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_15
  174. bool "5.15.x"
  175. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_15
  176. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_14
  177. bool "5.14.x"
  178. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_14
  179. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_13
  180. bool "5.13.x"
  181. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_13
  182. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_12
  183. bool "5.12.x"
  184. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_12
  185. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_11
  186. bool "5.11.x"
  187. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_11
  188. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_10
  189. bool "5.10.x"
  190. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_10
  191. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_9
  192. bool "5.9.x"
  193. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_9
  194. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_8
  195. bool "5.8.x"
  196. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_8
  197. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_7
  198. bool "5.7.x"
  199. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_7
  200. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_6
  201. bool "5.6.x"
  202. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_6
  203. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_5
  204. bool "5.5.x"
  205. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_5
  206. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_4
  207. bool "5.4.x"
  208. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  209. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_3
  210. bool "5.3.x"
  211. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_3
  212. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_2
  213. bool "5.2.x"
  214. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_2
  215. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_1
  216. bool "5.1.x"
  217. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
  218. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_0
  219. bool "5.0.x"
  220. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
  221. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_20
  222. bool "4.20.x"
  223. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_20
  224. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_19
  225. bool "4.19.x"
  226. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19
  227. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_18
  228. bool "4.18.x"
  229. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_18
  230. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_17
  231. bool "4.17.x"
  232. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_17
  233. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_16
  234. bool "4.16.x"
  235. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_16
  236. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_15
  237. bool "4.15.x"
  238. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_15
  239. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14
  240. bool "4.14.x"
  241. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14
  242. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_13
  243. bool "4.13.x"
  244. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_13
  245. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_12
  246. bool "4.12.x"
  247. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12
  248. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_11
  249. bool "4.11.x"
  250. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11
  251. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_10
  252. bool "4.10.x"
  253. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_10
  254. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9
  255. bool "4.9.x"
  256. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  257. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_8
  258. bool "4.8.x"
  259. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_8
  260. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_7
  261. bool "4.7.x"
  262. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7
  263. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_6
  264. bool "4.6.x"
  265. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_6
  266. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_5
  267. bool "4.5.x"
  268. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_5
  269. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_4
  270. bool "4.4.x"
  271. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_4
  272. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_3
  273. bool "4.3.x"
  274. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3
  275. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_2
  276. bool "4.2.x"
  277. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2
  278. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_1
  279. bool "4.1.x"
  280. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
  281. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_0
  282. bool "4.0.x"
  283. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0
  284. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_19
  285. bool "3.19.x"
  286. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_19
  287. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_18
  288. bool "3.18.x"
  289. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
  290. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_17
  291. bool "3.17.x"
  292. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17
  293. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_16
  294. bool "3.16.x"
  295. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16
  296. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_15
  297. bool "3.15.x"
  298. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
  299. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_14
  300. bool "3.14.x"
  301. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14
  302. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_13
  303. bool "3.13.x"
  304. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13
  305. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_12
  306. bool "3.12.x"
  307. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
  308. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_11
  309. bool "3.11.x"
  310. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11
  311. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_10
  312. bool "3.10.x"
  313. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
  314. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_9
  315. bool "3.9.x"
  316. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9
  317. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_8
  318. bool "3.8.x"
  319. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8
  320. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_7
  321. bool "3.7.x"
  322. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
  323. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_6
  324. bool "3.6.x"
  325. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6
  326. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_5
  327. bool "3.5.x"
  328. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5
  329. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_4
  330. bool "3.4.x"
  331. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
  332. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_3
  333. bool "3.3.x"
  334. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
  335. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_2
  336. bool "3.2.x"
  337. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
  338. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_1
  339. bool "3.1.x"
  340. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1
  341. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_0
  342. bool "3.0.x"
  343. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
  344. config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_REALLY_OLD
  345. bool "2.6.x"
  346. endchoice
  347. config BR2_DEFAULT_KERNEL_HEADERS
  348. string
  349. default "5.10.247" if BR2_KERNEL_HEADERS_5_10
  350. default "5.15.197" if BR2_KERNEL_HEADERS_5_15
  351. default "6.1.160" if BR2_KERNEL_HEADERS_6_1
  352. default "6.6.120" if BR2_KERNEL_HEADERS_6_6
  353. default "6.12.65" if BR2_KERNEL_HEADERS_6_12
  354. default "6.18.5" if BR2_KERNEL_HEADERS_6_18
  355. default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
  356. default "custom" if BR2_KERNEL_HEADERS_CUSTOM_TARBALL
  357. default BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION \
  358. if BR2_KERNEL_HEADERS_CUSTOM_GIT