Config.in 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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_35
  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_29
  15. bool "Linux 2.6.29.x kernel headers"
  16. depends on BR2_DEPRECATED
  17. config BR2_KERNEL_HEADERS_2_6_30
  18. bool "Linux 2.6.30.x kernel headers"
  19. depends on BR2_DEPRECATED
  20. config BR2_KERNEL_HEADERS_2_6_31
  21. bool "Linux 2.6.31.x kernel headers"
  22. depends on BR2_DEPRECATED
  23. config BR2_KERNEL_HEADERS_2_6_32
  24. bool "Linux 2.6.32.x kernel headers"
  25. depends on BR2_DEPRECATED
  26. config BR2_KERNEL_HEADERS_2_6_33
  27. bool "Linux 2.6.33.x kernel headers"
  28. config BR2_KERNEL_HEADERS_2_6_34
  29. bool "Linux 2.6.34.x kernel headers"
  30. config BR2_KERNEL_HEADERS_2_6_35
  31. bool "Linux 2.6.35.x kernel headers"
  32. config BR2_KERNEL_HEADERS_VERSION
  33. bool "Linux 2.6 (manually specified version)"
  34. config BR2_KERNEL_HEADERS_SNAP
  35. bool "Local Linux snapshot (linux-2.6.tar.bz2)"
  36. endchoice
  37. config BR2_DEFAULT_KERNEL_VERSION
  38. string "linux version"
  39. depends on BR2_KERNEL_HEADERS_VERSION
  40. help
  41. Specify the version you want to use.
  42. E.G.: 2.6.31.2
  43. config BR2_DEFAULT_KERNEL_HEADERS
  44. string
  45. default "2.6.29.6" if BR2_KERNEL_HEADERS_2_6_29
  46. default "2.6.30.10" if BR2_KERNEL_HEADERS_2_6_30
  47. default "2.6.31.14" if BR2_KERNEL_HEADERS_2_6_31
  48. default "2.6.32.22" if BR2_KERNEL_HEADERS_2_6_32
  49. default "2.6.33.7" if BR2_KERNEL_HEADERS_2_6_33
  50. default "2.6.34.7" if BR2_KERNEL_HEADERS_2_6_34
  51. default "2.6.35.4" if BR2_KERNEL_HEADERS_2_6_35
  52. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  53. default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION