Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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_4_29
  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. config BR2_KERNEL_HEADERS_2_4_25
  13. bool "Linux 2.4.25 kernel headers"
  14. config BR2_KERNEL_HEADERS_2_4_27
  15. bool "Linux 2.4.27 kernel headers"
  16. config BR2_KERNEL_HEADERS_2_4_29
  17. bool "Linux 2.4.29 kernel headers"
  18. config BR2_KERNEL_HEADERS_2_6_9
  19. bool "Linux 2.6.9 kernel headers"
  20. config BR2_KERNEL_HEADERS_2_6_10
  21. bool "Linux 2.6.10 kernel headers"
  22. config BR2_KERNEL_HEADERS_2_6_11
  23. bool "Linux 2.6.11 kernel headers"
  24. endchoice
  25. config BR2_DEFAULT_KERNEL_HEADERS
  26. string
  27. default "2.4.25" if BR2_KERNEL_HEADERS_2_4_25
  28. default "2.4.27" if BR2_KERNEL_HEADERS_2_4_27
  29. default "2.4.29" if BR2_KERNEL_HEADERS_2_4_29
  30. default "2.6.9" if BR2_KERNEL_HEADERS_2_6_9
  31. default "2.6.10" if BR2_KERNEL_HEADERS_2_6_10
  32. default "2.6.11" if BR2_KERNEL_HEADERS_2_6_11