2
1

Config.in 1.5 KB

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