Config.in 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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_3
  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_3_1
  27. bool "Linux 3.1.x kernel headers"
  28. config BR2_KERNEL_HEADERS_3_2
  29. bool "Linux 3.2.x kernel headers"
  30. config BR2_KERNEL_HEADERS_3_3
  31. bool "Linux 3.3.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.38
  43. config BR2_DEFAULT_KERNEL_HEADERS
  44. string
  45. default "2.6.35.14" if BR2_KERNEL_HEADERS_2_6_35
  46. default "2.6.36.4" if BR2_KERNEL_HEADERS_2_6_36
  47. default "2.6.37.6" if BR2_KERNEL_HEADERS_2_6_37
  48. default "2.6.38.8" if BR2_KERNEL_HEADERS_2_6_38
  49. default "2.6.39.4" if BR2_KERNEL_HEADERS_2_6_39
  50. default "3.0.29" if BR2_KERNEL_HEADERS_3_0
  51. default "3.1.10" if BR2_KERNEL_HEADERS_3_1
  52. default "3.2.16" if BR2_KERNEL_HEADERS_3_2
  53. default "3.3.3" if BR2_KERNEL_HEADERS_3_3
  54. default "2.6" if BR2_KERNEL_HEADERS_SNAP
  55. default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION