Config.in.host 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_13
  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_2
  17. bool "Linux 3.2.x kernel headers"
  18. depends on !BR2_arc
  19. config BR2_KERNEL_HEADERS_3_4
  20. bool "Linux 3.4.x kernel headers"
  21. depends on !BR2_arc
  22. config BR2_KERNEL_HEADERS_3_6
  23. bool "Linux 3.6.x kernel headers"
  24. depends on BR2_DEPRECATED_SINCE_2013_05 && !BR2_arc
  25. config BR2_KERNEL_HEADERS_3_7
  26. bool "Linux 3.7.x kernel headers"
  27. depends on BR2_DEPRECATED_SINCE_2013_05 && !BR2_arc
  28. config BR2_KERNEL_HEADERS_3_8
  29. bool "Linux 3.8.x kernel headers"
  30. depends on BR2_DEPRECATED_SINCE_2013_08 && !BR2_arc
  31. config BR2_KERNEL_HEADERS_3_9
  32. bool "Linux 3.9.x kernel headers"
  33. depends on BR2_DEPRECATED_SINCE_2013_11
  34. config BR2_KERNEL_HEADERS_3_10
  35. bool "Linux 3.10.x kernel headers"
  36. config BR2_KERNEL_HEADERS_3_11
  37. bool "Linux 3.11.x kernel headers"
  38. config BR2_KERNEL_HEADERS_3_12
  39. bool "Linux 3.12.x kernel headers"
  40. config BR2_KERNEL_HEADERS_3_13
  41. bool "Linux 3.13.x kernel headers"
  42. config BR2_KERNEL_HEADERS_VERSION
  43. bool "Manually specified Linux version"
  44. config BR2_KERNEL_HEADERS_SNAP
  45. bool "Local Linux snapshot (linux-2.6.tar.bz2)"
  46. endchoice
  47. config BR2_DEFAULT_KERNEL_VERSION
  48. string "linux version"
  49. depends on BR2_KERNEL_HEADERS_VERSION
  50. help
  51. Specify the version you want to use.
  52. E.G.: 3.6.10
  53. config BR2_DEFAULT_KERNEL_HEADERS
  54. string
  55. default "3.0.101" if BR2_KERNEL_HEADERS_3_0
  56. default "3.2.54" if BR2_KERNEL_HEADERS_3_2
  57. default "3.4.79" if BR2_KERNEL_HEADERS_3_4
  58. default "3.6.11" if BR2_KERNEL_HEADERS_3_6
  59. default "3.7.10" if BR2_KERNEL_HEADERS_3_7
  60. default "3.8.13" if BR2_KERNEL_HEADERS_3_8
  61. default "3.9.11" if BR2_KERNEL_HEADERS_3_9
  62. default "3.10.29" if BR2_KERNEL_HEADERS_3_10
  63. default "3.11.10" if BR2_KERNEL_HEADERS_3_11
  64. default "3.12.10" if BR2_KERNEL_HEADERS_3_12
  65. default "3.13.2" if BR2_KERNEL_HEADERS_3_13
  66. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  67. default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION