Config.in.host 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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_10
  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_1
  17. bool "Linux 3.1.x kernel headers"
  18. depends on BR2_DEPRECATED && !BR2_arc
  19. config BR2_KERNEL_HEADERS_3_2
  20. bool "Linux 3.2.x kernel headers"
  21. depends on !BR2_arc
  22. config BR2_KERNEL_HEADERS_3_3
  23. bool "Linux 3.3.x kernel headers"
  24. depends on BR2_DEPRECATED && !BR2_arc
  25. config BR2_KERNEL_HEADERS_3_4
  26. bool "Linux 3.4.x kernel headers"
  27. depends on !BR2_arc
  28. config BR2_KERNEL_HEADERS_3_5
  29. bool "Linux 3.5.x kernel headers"
  30. depends on BR2_DEPRECATED && !BR2_arc
  31. config BR2_KERNEL_HEADERS_3_6
  32. bool "Linux 3.6.x kernel headers"
  33. depends on BR2_DEPRECATED && !BR2_arc
  34. config BR2_KERNEL_HEADERS_3_7
  35. bool "Linux 3.7.x kernel headers"
  36. depends on BR2_DEPRECATED && !BR2_arc
  37. config BR2_KERNEL_HEADERS_3_8
  38. bool "Linux 3.8.x kernel headers"
  39. depends on BR2_DEPRECATED && !BR2_arc
  40. config BR2_KERNEL_HEADERS_3_9
  41. bool "Linux 3.9.x kernel headers"
  42. config BR2_KERNEL_HEADERS_3_10
  43. bool "Linux 3.10.x kernel headers"
  44. config BR2_KERNEL_HEADERS_VERSION
  45. bool "Manually specified Linux version"
  46. config BR2_KERNEL_HEADERS_SNAP
  47. bool "Local Linux snapshot (linux-2.6.tar.bz2)"
  48. endchoice
  49. config BR2_DEFAULT_KERNEL_VERSION
  50. string "linux version"
  51. depends on BR2_KERNEL_HEADERS_VERSION
  52. help
  53. Specify the version you want to use.
  54. E.G.: 3.6.10
  55. config BR2_DEFAULT_KERNEL_HEADERS
  56. string
  57. default "3.0.87" if BR2_KERNEL_HEADERS_3_0
  58. default "3.1.10" if BR2_KERNEL_HEADERS_3_1
  59. default "3.2.49" if BR2_KERNEL_HEADERS_3_2
  60. default "3.3.8" if BR2_KERNEL_HEADERS_3_3
  61. default "3.4.54" if BR2_KERNEL_HEADERS_3_4
  62. default "3.5.7" if BR2_KERNEL_HEADERS_3_5
  63. default "3.6.11" if BR2_KERNEL_HEADERS_3_6
  64. default "3.7.10" if BR2_KERNEL_HEADERS_3_7
  65. default "3.8.13" if BR2_KERNEL_HEADERS_3_8
  66. default "3.9.11" if BR2_KERNEL_HEADERS_3_9
  67. default "3.10.3" if BR2_KERNEL_HEADERS_3_10
  68. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  69. default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION