Config.in 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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_6
  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_2_6_37
  15. bool "Linux 2.6.37.x kernel headers"
  16. depends on BR2_DEPRECATED
  17. config BR2_KERNEL_HEADERS_2_6_38
  18. bool "Linux 2.6.38.x kernel headers"
  19. depends on BR2_DEPRECATED
  20. config BR2_KERNEL_HEADERS_2_6_39
  21. bool "Linux 2.6.39.x kernel headers"
  22. depends on BR2_DEPRECATED
  23. config BR2_KERNEL_HEADERS_3_0
  24. bool "Linux 3.0.x kernel headers"
  25. config BR2_KERNEL_HEADERS_3_1
  26. bool "Linux 3.1.x kernel headers"
  27. config BR2_KERNEL_HEADERS_3_2
  28. bool "Linux 3.2.x kernel headers"
  29. config BR2_KERNEL_HEADERS_3_3
  30. bool "Linux 3.3.x kernel headers"
  31. config BR2_KERNEL_HEADERS_3_4
  32. bool "Linux 3.4.x kernel headers"
  33. config BR2_KERNEL_HEADERS_3_5
  34. bool "Linux 3.5.x kernel headers"
  35. config BR2_KERNEL_HEADERS_3_6
  36. bool "Linux 3.6.x kernel headers"
  37. config BR2_KERNEL_HEADERS_VERSION
  38. bool "Linux 2.6 (manually specified version)"
  39. config BR2_KERNEL_HEADERS_SNAP
  40. bool "Local Linux snapshot (linux-2.6.tar.bz2)"
  41. endchoice
  42. config BR2_DEFAULT_KERNEL_VERSION
  43. string "linux version"
  44. depends on BR2_KERNEL_HEADERS_VERSION
  45. help
  46. Specify the version you want to use.
  47. E.G.: 2.6.38
  48. config BR2_DEFAULT_KERNEL_HEADERS
  49. string
  50. default "2.6.37.6" if BR2_KERNEL_HEADERS_2_6_37
  51. default "2.6.38.8" if BR2_KERNEL_HEADERS_2_6_38
  52. default "2.6.39.4" if BR2_KERNEL_HEADERS_2_6_39
  53. default "3.0.53" if BR2_KERNEL_HEADERS_3_0
  54. default "3.1.10" if BR2_KERNEL_HEADERS_3_1
  55. default "3.2.34" if BR2_KERNEL_HEADERS_3_2
  56. default "3.3.8" if BR2_KERNEL_HEADERS_3_3
  57. default "3.4.20" if BR2_KERNEL_HEADERS_3_4
  58. default "3.5.7" if BR2_KERNEL_HEADERS_3_5
  59. default "3.6.8" if BR2_KERNEL_HEADERS_3_6
  60. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  61. default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION