Kconfig 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. config RT2X00
  2. tristate "Ralink driver support"
  3. depends on MAC80211 && WLAN_80211 && EXPERIMENTAL
  4. ---help---
  5. This will enable the experimental support for the Ralink drivers,
  6. developed in the rt2x00 project <http://rt2x00.serialmonkey.com>.
  7. These drivers will make use of the mac80211 stack.
  8. When building one of the individual drivers, the rt2x00 library
  9. will also be created. That library (when the driver is built as
  10. a module) will be called "rt2x00lib.ko".
  11. if RT2X00
  12. config RT2X00_LIB
  13. tristate
  14. config RT2X00_LIB_PCI
  15. tristate
  16. select RT2X00_LIB
  17. config RT2X00_LIB_USB
  18. tristate
  19. select RT2X00_LIB
  20. config RT2X00_LIB_FIRMWARE
  21. boolean
  22. depends on RT2X00_LIB
  23. select FW_LOADER
  24. config RT2X00_LIB_RFKILL
  25. boolean
  26. depends on RT2X00_LIB
  27. depends on INPUT
  28. select RFKILL
  29. select INPUT_POLLDEV
  30. config RT2X00_LIB_LEDS
  31. boolean
  32. depends on RT2X00_LIB && NEW_LEDS
  33. config RT2400PCI
  34. tristate "Ralink rt2400 pci/pcmcia support"
  35. depends on PCI
  36. select RT2X00_LIB_PCI
  37. select EEPROM_93CX6
  38. ---help---
  39. This is an experimental driver for the Ralink rt2400 wireless chip.
  40. When compiled as a module, this driver will be called "rt2400pci.ko".
  41. config RT2400PCI_RFKILL
  42. bool "RT2400 rfkill support"
  43. depends on RT2400PCI && INPUT
  44. select RT2X00_LIB_RFKILL
  45. ---help---
  46. This adds support for integrated rt2400 devices that feature a
  47. hardware button to control the radio state.
  48. This feature depends on the RF switch subsystem rfkill.
  49. config RT2400PCI_LEDS
  50. bool "RT2400 leds support"
  51. depends on RT2400PCI && NEW_LEDS
  52. select LEDS_CLASS
  53. select RT2X00_LIB_LEDS
  54. ---help---
  55. This adds support for led triggers provided my mac80211.
  56. config RT2500PCI
  57. tristate "Ralink rt2500 pci/pcmcia support"
  58. depends on PCI
  59. select RT2X00_LIB_PCI
  60. select EEPROM_93CX6
  61. ---help---
  62. This is an experimental driver for the Ralink rt2500 wireless chip.
  63. When compiled as a module, this driver will be called "rt2500pci.ko".
  64. config RT2500PCI_RFKILL
  65. bool "RT2500 rfkill support"
  66. depends on RT2500PCI && INPUT
  67. select RT2X00_LIB_RFKILL
  68. ---help---
  69. This adds support for integrated rt2500 devices that feature a
  70. hardware button to control the radio state.
  71. This feature depends on the RF switch subsystem rfkill.
  72. config RT2500PCI_LEDS
  73. bool "RT2500 leds support"
  74. depends on RT2500PCI && NEW_LEDS
  75. select LEDS_CLASS
  76. select RT2X00_LIB_LEDS
  77. ---help---
  78. This adds support for led triggers provided my mac80211.
  79. config RT61PCI
  80. tristate "Ralink rt61 pci/pcmcia support"
  81. depends on PCI
  82. select RT2X00_LIB_PCI
  83. select RT2X00_LIB_FIRMWARE
  84. select CRC_ITU_T
  85. select EEPROM_93CX6
  86. ---help---
  87. This is an experimental driver for the Ralink rt61 wireless chip.
  88. When compiled as a module, this driver will be called "rt61pci.ko".
  89. config RT61PCI_RFKILL
  90. bool "RT61 rfkill support"
  91. depends on RT61PCI && INPUT
  92. select RT2X00_LIB_RFKILL
  93. ---help---
  94. This adds support for integrated rt61 devices that feature a
  95. hardware button to control the radio state.
  96. This feature depends on the RF switch subsystem rfkill.
  97. config RT61PCI_LEDS
  98. bool "RT61 leds support"
  99. depends on RT61PCI && NEW_LEDS
  100. select LEDS_CLASS
  101. select RT2X00_LIB_LEDS
  102. ---help---
  103. This adds support for led triggers provided my mac80211.
  104. config RT2500USB
  105. tristate "Ralink rt2500 usb support"
  106. depends on USB
  107. select RT2X00_LIB_USB
  108. ---help---
  109. This is an experimental driver for the Ralink rt2500 wireless chip.
  110. When compiled as a module, this driver will be called "rt2500usb.ko".
  111. config RT2500USB_LEDS
  112. bool "RT2500 leds support"
  113. depends on RT2500USB && NEW_LEDS
  114. select LEDS_CLASS
  115. select RT2X00_LIB_LEDS
  116. ---help---
  117. This adds support for led triggers provided my mac80211.
  118. config RT73USB
  119. tristate "Ralink rt73 usb support"
  120. depends on USB
  121. select RT2X00_LIB_USB
  122. select RT2X00_LIB_FIRMWARE
  123. select CRC_ITU_T
  124. ---help---
  125. This is an experimental driver for the Ralink rt73 wireless chip.
  126. When compiled as a module, this driver will be called "rt73usb.ko".
  127. config RT73USB_LEDS
  128. bool "RT73 leds support"
  129. depends on RT73USB && NEW_LEDS
  130. select LEDS_CLASS
  131. select RT2X00_LIB_LEDS
  132. ---help---
  133. This adds support for led triggers provided my mac80211.
  134. config RT2X00_LIB_DEBUGFS
  135. bool "Ralink debugfs support"
  136. depends on RT2X00_LIB && MAC80211_DEBUGFS
  137. ---help---
  138. Enable creation of debugfs files for the rt2x00 drivers.
  139. These debugfs files support both reading and writing of the
  140. most important register types of the rt2x00 devices.
  141. config RT2X00_DEBUG
  142. bool "Ralink debug output"
  143. depends on RT2X00_LIB
  144. ---help---
  145. Enable debugging output for all rt2x00 modules
  146. endif