Config.in 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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_28
  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_22
  15. depends on BR2_DEPRECATED
  16. bool "Linux 2.6.22.x kernel headers"
  17. config BR2_KERNEL_HEADERS_2_6_23
  18. depends on BR2_DEPRECATED
  19. bool "Linux 2.6.23.x kernel headers"
  20. config BR2_KERNEL_HEADERS_2_6_24
  21. depends on BR2_DEPRECATED
  22. bool "Linux 2.6.24.x kernel headers"
  23. config BR2_KERNEL_HEADERS_2_6_25
  24. depends on BR2_DEPRECATED
  25. bool "Linux 2.6.25.x kernel headers"
  26. config BR2_KERNEL_HEADERS_2_6_26
  27. depends on BR2_DEPRECATED
  28. bool "Linux 2.6.26.x kernel headers"
  29. config BR2_KERNEL_HEADERS_2_6_27
  30. depends on BR2_DEPRECATED || BR2_RECENT
  31. bool "Linux 2.6.27.x kernel headers"
  32. config BR2_KERNEL_HEADERS_2_6_28
  33. bool "Linux 2.6.28.x kernel headers"
  34. config BR2_KERNEL_HEADERS_SNAP
  35. bool "Linux 2.6 snapshot"
  36. endchoice
  37. config BR2_KERNEL_HEADERS_RT
  38. bool "use realtime (-rt) kernel patches"
  39. depends on BR2_KERNEL_HEADERS_2_6_24 || BR2_KERNEL_HEADERS_2_6_26
  40. help
  41. Apply Ingo's realtime extensions to linux
  42. config BR2_DEFAULT_KERNEL_HEADERS
  43. string
  44. default "2.6.22.10" if BR2_KERNEL_HEADERS_2_6_22
  45. default "2.6.23" if BR2_KERNEL_HEADERS_2_6_23
  46. default "2.6.24.7" if BR2_KERNEL_HEADERS_2_6_24
  47. default "2.6.25.19" if BR2_KERNEL_HEADERS_2_6_25
  48. default "2.6.26.8" if BR2_KERNEL_HEADERS_2_6_26
  49. default "2.6.27.18" if BR2_KERNEL_HEADERS_2_6_27
  50. default "2.6.28.7" if BR2_KERNEL_HEADERS_2_6_28
  51. default "2.6" if BR2_KERNEL_HEADERS_SNAP