2
1

Config.in 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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_2_6_32
  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_26
  15. depends on BR2_DEPRECATED
  16. bool "Linux 2.6.26.x kernel headers"
  17. config BR2_KERNEL_HEADERS_2_6_27
  18. depends on BR2_DEPRECATED
  19. bool "Linux 2.6.27.x kernel headers"
  20. config BR2_KERNEL_HEADERS_2_6_28
  21. bool "Linux 2.6.28.x kernel headers"
  22. depends on BR2_DEPRECATED
  23. config BR2_KERNEL_HEADERS_2_6_29
  24. bool "Linux 2.6.29.x kernel headers"
  25. depends on BR2_DEPRECATED
  26. config BR2_KERNEL_HEADERS_2_6_30
  27. bool "Linux 2.6.30.x kernel headers"
  28. depends on BR2_DEPRECATED
  29. config BR2_KERNEL_HEADERS_2_6_31
  30. bool "Linux 2.6.31.x kernel headers"
  31. depends on BR2_DEPRECATED || BR2_RECENT
  32. config BR2_KERNEL_HEADERS_2_6_32
  33. bool "Linux 2.6.32.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_KERNEL_HEADERS_RT
  40. bool "use realtime (-rt) kernel patches"
  41. depends on BR2_KERNEL_HEADERS_2_6_26
  42. help
  43. Apply Ingo's realtime extensions to linux
  44. config BR2_DEFAULT_KERNEL_VERSION
  45. string "linux version"
  46. depends on BR2_KERNEL_HEADERS_VERSION
  47. help
  48. Specify the version you want to use.
  49. E.g.: 2.6.31.2
  50. config BR2_DEFAULT_KERNEL_HEADERS
  51. string
  52. default "2.6.26.8" if BR2_KERNEL_HEADERS_2_6_26
  53. default "2.6.27.45" if BR2_KERNEL_HEADERS_2_6_27
  54. default "2.6.28.10" if BR2_KERNEL_HEADERS_2_6_28
  55. default "2.6.29.6" if BR2_KERNEL_HEADERS_2_6_29
  56. default "2.6.30.10" if BR2_KERNEL_HEADERS_2_6_30
  57. default "2.6.31.12" if BR2_KERNEL_HEADERS_2_6_31
  58. default "2.6.32.7" if BR2_KERNEL_HEADERS_2_6_32
  59. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  60. default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION