Config.in.host 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. endchoice
  45. config BR2_DEFAULT_KERNEL_VERSION
  46. string "linux version"
  47. depends on BR2_KERNEL_HEADERS_VERSION
  48. help
  49. Specify the version you want to use.
  50. E.G.: 3.6.10
  51. config BR2_DEFAULT_KERNEL_HEADERS
  52. string
  53. default "3.0.101" if BR2_KERNEL_HEADERS_3_0
  54. default "3.2.55" if BR2_KERNEL_HEADERS_3_2
  55. default "3.4.82" if BR2_KERNEL_HEADERS_3_4
  56. default "3.6.11" if BR2_KERNEL_HEADERS_3_6
  57. default "3.7.10" if BR2_KERNEL_HEADERS_3_7
  58. default "3.8.13" if BR2_KERNEL_HEADERS_3_8
  59. default "3.9.11" if BR2_KERNEL_HEADERS_3_9
  60. default "3.10.32" if BR2_KERNEL_HEADERS_3_10
  61. default "3.11.10" if BR2_KERNEL_HEADERS_3_11
  62. default "3.12.13" if BR2_KERNEL_HEADERS_3_12
  63. default "3.13.5" if BR2_KERNEL_HEADERS_3_13
  64. default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION