Config.in 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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_3_0
  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_2_6_39
  23. bool "Linux 2.6.39.x kernel headers"
  24. config BR2_KERNEL_HEADERS_3_0
  25. bool "Linux 3.0.x kernel headers"
  26. config BR2_KERNEL_HEADERS_VERSION
  27. bool "Linux 2.6 (manually specified version)"
  28. config BR2_KERNEL_HEADERS_SNAP
  29. bool "Local Linux snapshot (linux-2.6.tar.bz2)"
  30. endchoice
  31. config BR2_DEFAULT_KERNEL_VERSION
  32. string "linux version"
  33. depends on BR2_KERNEL_HEADERS_VERSION
  34. help
  35. Specify the version you want to use.
  36. E.G.: 2.6.38
  37. config BR2_DEFAULT_KERNEL_HEADERS
  38. string
  39. default "2.6.35.14" if BR2_KERNEL_HEADERS_2_6_35
  40. default "2.6.36.4" if BR2_KERNEL_HEADERS_2_6_36
  41. default "2.6.37.6" if BR2_KERNEL_HEADERS_2_6_37
  42. default "2.6.38.8" if BR2_KERNEL_HEADERS_2_6_38
  43. default "2.6.39.4" if BR2_KERNEL_HEADERS_2_6_39
  44. default "3.0.3" if BR2_KERNEL_HEADERS_3_0
  45. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  46. default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION