2
1

Config.in 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # Choose the kernel headers to use for kernel-headers target. This is
  2. # ignored if you are building your own kernel or using the system kernel.
  3. #
  4. comment "Kernel Header Options"
  5. choice
  6. prompt "Kernel Headers"
  7. default BR2_KERNEL_HEADERS_3_9
  8. help
  9. Select the version of kernel header files you wish to use.
  10. You must select the correct set of header files to match
  11. the kernel you intend to use on your target system.
  12. For the snapshot, you have to provide the
  13. linux-2.6.tar.bz2 tarball in your download dir.
  14. config BR2_KERNEL_HEADERS_3_0
  15. bool "Linux 3.0.x kernel headers"
  16. depends on !BR2_arc
  17. config BR2_KERNEL_HEADERS_3_1
  18. bool "Linux 3.1.x kernel headers"
  19. depends on BR2_DEPRECATED && !BR2_arc
  20. config BR2_KERNEL_HEADERS_3_2
  21. bool "Linux 3.2.x kernel headers"
  22. depends on !BR2_arc
  23. config BR2_KERNEL_HEADERS_3_3
  24. bool "Linux 3.3.x kernel headers"
  25. depends on BR2_DEPRECATED && !BR2_arc
  26. config BR2_KERNEL_HEADERS_3_4
  27. bool "Linux 3.4.x kernel headers"
  28. depends on !BR2_arc
  29. config BR2_KERNEL_HEADERS_3_5
  30. bool "Linux 3.5.x kernel headers"
  31. depends on BR2_DEPRECATED && !BR2_arc
  32. config BR2_KERNEL_HEADERS_3_6
  33. bool "Linux 3.6.x kernel headers"
  34. depends on BR2_DEPRECATED && !BR2_arc
  35. config BR2_KERNEL_HEADERS_3_7
  36. bool "Linux 3.7.x kernel headers"
  37. depends on BR2_DEPRECATED && !BR2_arc
  38. config BR2_KERNEL_HEADERS_3_8
  39. bool "Linux 3.8.x kernel headers"
  40. depends on !BR2_arc
  41. config BR2_KERNEL_HEADERS_3_9
  42. bool "Linux 3.9.x kernel headers"
  43. config BR2_KERNEL_HEADERS_VERSION
  44. bool "Manually specified Linux version"
  45. config BR2_KERNEL_HEADERS_SNAP
  46. bool "Local Linux snapshot (linux-2.6.tar.bz2)"
  47. endchoice
  48. config BR2_DEFAULT_KERNEL_VERSION
  49. string "linux version"
  50. depends on BR2_KERNEL_HEADERS_VERSION
  51. help
  52. Specify the version you want to use.
  53. E.G.: 3.6.10
  54. config BR2_DEFAULT_KERNEL_HEADERS
  55. string
  56. default "3.0.77" if BR2_KERNEL_HEADERS_3_0
  57. default "3.1.10" if BR2_KERNEL_HEADERS_3_1
  58. default "3.2.44" if BR2_KERNEL_HEADERS_3_2
  59. default "3.3.8" if BR2_KERNEL_HEADERS_3_3
  60. default "3.4.44" if BR2_KERNEL_HEADERS_3_4
  61. default "3.5.7" if BR2_KERNEL_HEADERS_3_5
  62. default "3.6.11" if BR2_KERNEL_HEADERS_3_6
  63. default "3.7.10" if BR2_KERNEL_HEADERS_3_7
  64. default "3.8.12" if BR2_KERNEL_HEADERS_3_8
  65. default "3.9.1" if BR2_KERNEL_HEADERS_3_9
  66. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  67. default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION