Config.in 4.5 KB

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