Config.in 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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_28
  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_4_31
  15. depends on !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
  16. bool "Linux 2.4.31 kernel headers"
  17. config BR2_KERNEL_HEADERS_2_6_20_4
  18. depends on !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
  19. bool "Linux 2.6.20.4 kernel headers"
  20. config BR2_KERNEL_HEADERS_2_6_20
  21. depends on !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
  22. bool "Linux 2.6.20.x kernel headers"
  23. config BR2_KERNEL_HEADERS_2_6_21_5
  24. depends on !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
  25. bool "Linux 2.6.21.5 kernel headers"
  26. config BR2_KERNEL_HEADERS_2_6_21
  27. depends on !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
  28. bool "Linux 2.6.21.x kernel headers"
  29. config BR2_KERNEL_HEADERS_2_6_22_1
  30. depends on !BR2_avr32 && !BR2_nios2 && BR2_DEPRECATED
  31. bool "Linux 2.6.22.1 kernel headers"
  32. config BR2_KERNEL_HEADERS_2_6_22_10
  33. depends on !BR2_nios2 && BR2_DEPRECATED
  34. bool "Linux 2.6.22.10 kernel headers"
  35. config BR2_KERNEL_HEADERS_2_6_22
  36. depends on BR2_DEPRECATED
  37. bool "Linux 2.6.22.x kernel headers"
  38. config BR2_KERNEL_HEADERS_2_6_23
  39. depends on BR2_DEPRECATED
  40. bool "Linux 2.6.23.x kernel headers"
  41. config BR2_KERNEL_HEADERS_2_6_24
  42. depends on BR2_DEPRECATED
  43. bool "Linux 2.6.24.x kernel headers"
  44. config BR2_KERNEL_HEADERS_2_6_25
  45. depends on BR2_DEPRECATED
  46. bool "Linux 2.6.25.x kernel headers"
  47. config BR2_KERNEL_HEADERS_2_6_26
  48. depends on BR2_DEPRECATED
  49. bool "Linux 2.6.26.x kernel headers"
  50. config BR2_KERNEL_HEADERS_2_6_27
  51. depends on BR2_DEPRECATED || BR2_RECENT
  52. bool "Linux 2.6.27.x kernel headers"
  53. config BR2_KERNEL_HEADERS_2_6_28
  54. bool "Linux 2.6.28.x kernel headers"
  55. config BR2_KERNEL_HEADERS_SNAP
  56. bool "Linux 2.6 snapshot"
  57. endchoice
  58. config BR2_KERNEL_HEADERS_IPMI
  59. bool "use ipmi kernel patches"
  60. depends on BR2_KERNEL_HEADERS_2_6_20_4 || BR2_KERNEL_HEADERS_2_6_21_5 || BR2_KERNEL_HEADERS_2_6_22_1
  61. help
  62. Apply patches which add IPMI sensor support.
  63. config BR2_KERNEL_HEADERS_LZMA
  64. bool "use lzma initramfs kernel patches"
  65. depends on BR2_KERNEL_HEADERS_2_6_21_5 || BR2_KERNEL_HEADERS_2_6_22_1
  66. help
  67. Apply patches which allow for lzma compressed
  68. initramfs filesystems. This requires the lzma
  69. program in your development environment.
  70. config BR2_KERNEL_HEADERS_RT
  71. bool "use realtime (-rt) kernel patches"
  72. depends on BR2_KERNEL_HEADERS_2_6_21_5 || BR2_KERNEL_HEADERS_2_6_22_1
  73. help
  74. Apply Ingo's realtime extensions to linux
  75. config BR2_KERNEL_HEADERS_PATCH_DIR
  76. bool "Add additional headers from $(KERNEL_HEADERS_PATCH_DIR)"
  77. depends on BR2_KERNEL_HEADERS_2_6_20_4 || BR2_KERNEL_HEADERS_2_6_21_5 || BR2_KERNEL_HEADERS_2_6_22_1 || BR2_KERNEL_HEADERS_2_6_22_10
  78. help
  79. Apply additional kernel patches defined by KERNEL_HEADERS_PATCH_DIR
  80. in your board directory.
  81. config BR2_DEFAULT_KERNEL_HEADERS
  82. string
  83. default "2.4.31" if BR2_KERNEL_HEADERS_2_4_31
  84. default "2.6.20.4" if BR2_KERNEL_HEADERS_2_6_20_4
  85. default "2.6.20.20" if BR2_KERNEL_HEADERS_2_6_20
  86. default "2.6.21.5" if BR2_KERNEL_HEADERS_2_6_21_5
  87. default "2.6.21.7" if BR2_KERNEL_HEADERS_2_6_21
  88. default "2.6.22.1" if BR2_KERNEL_HEADERS_2_6_22_1
  89. default "2.6.22.10" if BR2_KERNEL_HEADERS_2_6_22_10
  90. default "2.6.22.10" if BR2_KERNEL_HEADERS_2_6_22
  91. default "2.6.23" if BR2_KERNEL_HEADERS_2_6_23
  92. default "2.6.24.7" if BR2_KERNEL_HEADERS_2_6_24
  93. default "2.6.25.19" if BR2_KERNEL_HEADERS_2_6_25
  94. default "2.6.26.8" if BR2_KERNEL_HEADERS_2_6_26
  95. default "2.6.27.13" if BR2_KERNEL_HEADERS_2_6_27
  96. default "2.6.28.2" if BR2_KERNEL_HEADERS_2_6_28
  97. default "2.6" if BR2_KERNEL_HEADERS_SNAP