Config.in 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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_22
  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 "Latest Linux 2.6.20.x kernel headers"
  41. config BR2_KERNEL_HEADERS_2_6_21_5
  42. depends !BR2_avr32 && !BR2_nios2
  43. bool "Linux 2.6.21.5 kernel headers"
  44. config BR2_KERNEL_HEADERS_2_6_21
  45. depends !BR2_avr32 && !BR2_nios2
  46. bool "Latest Linux 2.6.21.x kernel headers"
  47. config BR2_KERNEL_HEADERS_2_6_22_1
  48. depends !BR2_nios2
  49. bool "Linux 2.6.22.1 kernel headers"
  50. config BR2_KERNEL_HEADERS_2_6_22
  51. depends !BR2_avr32 && !BR2_nios2
  52. bool "Latest Linux 2.6.22.x kernel headers"
  53. config BR2_KERNEL_HEADERS_SNAP
  54. bool "Linux 2.6 snapshot"
  55. endchoice
  56. config BR2_KERNEL_HEADERS_IPMI
  57. bool "use ipmi kernel patches"
  58. default n
  59. depends BR2_KERNEL_HEADERS_2_6_20_4 || BR2_KERNEL_HEADERS_2_6_21_5 || BR2_KERNEL_HEADERS_2_6_22_1
  60. help
  61. Apply patches which add IPMI sensor support.
  62. config BR2_KERNEL_HEADERS_LZMA
  63. bool "use lzma initramfs kernel patches"
  64. default n
  65. depends 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. default n
  73. depends BR2_KERNEL_HEADERS_2_6_21_5 || BR2_KERNEL_HEADERS_2_6_22_1
  74. help
  75. Apply Ingo's realtime extensions to linux
  76. config BR2_KERNEL_HEADERS_PATCH_DIR
  77. bool "Add additional headers from $(KERNEL_HEADERS_PATCH_DIR)"
  78. default n
  79. depends BR2_KERNEL_HEADERS_2_6_20_4 || BR2_KERNEL_HEADERS_2_6_21_5 || BR2_KERNEL_HEADERS_2_6_22_1
  80. help
  81. Apply additional kernel patches defined by KERNEL_HEADERS_PATCH_DIR
  82. in your board directory.
  83. config BR2_DEFAULT_KERNEL_HEADERS
  84. string
  85. default "2.4.25" if BR2_KERNEL_HEADERS_2_4_25
  86. default "2.4.27" if BR2_KERNEL_HEADERS_2_4_27
  87. default "2.4.29" if BR2_KERNEL_HEADERS_2_4_29
  88. default "2.4.31" if BR2_KERNEL_HEADERS_2_4_31
  89. default "2.6.9" if BR2_KERNEL_HEADERS_2_6_9
  90. default "2.6.11" if BR2_KERNEL_HEADERS_2_6_11
  91. default "2.6.12" if BR2_KERNEL_HEADERS_2_6_12
  92. default "2.6.20.4" if BR2_KERNEL_HEADERS_2_6_20_4
  93. default "2.6.20.20" if BR2_KERNEL_HEADERS_2_6_20
  94. default "2.6.21.5" if BR2_KERNEL_HEADERS_2_6_21_5
  95. default "2.6.21.7" if BR2_KERNEL_HEADERS_2_6_21
  96. default "2.6.22.1" if BR2_KERNEL_HEADERS_2_6_22_1
  97. default "2.6.22.9" if BR2_KERNEL_HEADERS_2_6_22
  98. default "2.6" if BR2_KERNEL_HEADERS_SNAP