Config.in 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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_37
  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_34
  15. depends on BR2_DEPRECATED
  16. bool "Linux 2.6.34.x kernel headers"
  17. config BR2_KERNEL_HEADERS_2_6_35
  18. bool "Linux 2.6.35.x kernel headers"
  19. config BR2_KERNEL_HEADERS_2_6_36
  20. bool "Linux 2.6.36.x kernel headers"
  21. config BR2_KERNEL_HEADERS_2_6_37
  22. bool "Linux 2.6.37.x kernel headers"
  23. config BR2_KERNEL_HEADERS_VERSION
  24. bool "Linux 2.6 (manually specified version)"
  25. config BR2_KERNEL_HEADERS_SNAP
  26. bool "Local Linux snapshot (linux-2.6.tar.bz2)"
  27. endchoice
  28. config BR2_DEFAULT_KERNEL_VERSION
  29. string "linux version"
  30. depends on BR2_KERNEL_HEADERS_VERSION
  31. help
  32. Specify the version you want to use.
  33. E.G.: 2.6.37
  34. config BR2_DEFAULT_KERNEL_HEADERS
  35. string
  36. default "2.6.34.8" if BR2_KERNEL_HEADERS_2_6_34
  37. default "2.6.35.10" if BR2_KERNEL_HEADERS_2_6_35
  38. default "2.6.36.3" if BR2_KERNEL_HEADERS_2_6_36
  39. default "2.6.37" if BR2_KERNEL_HEADERS_2_6_37
  40. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  41. default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION