Config.in 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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_30
  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 || BR2_RECENT
  26. config BR2_KERNEL_HEADERS_2_6_30
  27. bool "Linux 2.6.30.x kernel headers"
  28. config BR2_KERNEL_HEADERS_SNAP
  29. bool "Linux 2.6 snapshot"
  30. endchoice
  31. config BR2_KERNEL_HEADERS_RT
  32. bool "use realtime (-rt) kernel patches"
  33. depends on BR2_KERNEL_HEADERS_2_6_26
  34. help
  35. Apply Ingo's realtime extensions to linux
  36. config BR2_DEFAULT_KERNEL_HEADERS
  37. string
  38. default "2.6.26.8" if BR2_KERNEL_HEADERS_2_6_26
  39. default "2.6.27.26" if BR2_KERNEL_HEADERS_2_6_27
  40. default "2.6.28.10" if BR2_KERNEL_HEADERS_2_6_28
  41. default "2.6.29.6" if BR2_KERNEL_HEADERS_2_6_29
  42. default "2.6.30.1" if BR2_KERNEL_HEADERS_2_6_30
  43. default "2.6" if BR2_KERNEL_HEADERS_SNAP