Config.in 2.1 KB

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