Kconfig 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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 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. Additionally PCI and USB libraries will also be build depending
  12. on the types of drivers being selected, these libraries will be
  13. called "rt2x00pci.ko" and "rt2x00usb.ko".
  14. if RT2X00
  15. config RT2X00_LIB
  16. tristate
  17. config RT2X00_LIB_PCI
  18. tristate
  19. select RT2X00_LIB
  20. config RT2X00_LIB_USB
  21. tristate
  22. select RT2X00_LIB
  23. config RT2X00_LIB_FIRMWARE
  24. boolean
  25. depends on RT2X00_LIB
  26. select FW_LOADER
  27. config RT2X00_LIB_CRYPTO
  28. boolean
  29. depends on RT2X00_LIB
  30. config RT2X00_LIB_RFKILL
  31. boolean
  32. depends on RT2X00_LIB
  33. depends on RFKILL
  34. default y
  35. config RT2X00_LIB_LEDS
  36. boolean
  37. depends on RT2X00_LIB && NEW_LEDS
  38. config RT2400PCI
  39. tristate "Ralink rt2400 (PCI/PCMCIA) support"
  40. depends on PCI
  41. select RT2X00_LIB_PCI
  42. select EEPROM_93CX6
  43. ---help---
  44. This adds support for rt2400 wireless chipset family.
  45. Supported chips: RT2460.
  46. When compiled as a module, this driver will be called "rt2400pci.ko".
  47. config RT2400PCI_LEDS
  48. bool "Ralink rt2400 leds support"
  49. depends on RT2400PCI && NEW_LEDS
  50. select LEDS_CLASS
  51. select RT2X00_LIB_LEDS
  52. ---help---
  53. This adds support for led triggers provided my mac80211.
  54. config RT2500PCI
  55. tristate "Ralink rt2500 (PCI/PCMCIA) support"
  56. depends on PCI
  57. select RT2X00_LIB_PCI
  58. select EEPROM_93CX6
  59. ---help---
  60. This adds support for rt2500 wireless chipset family.
  61. Supported chips: RT2560.
  62. When compiled as a module, this driver will be called "rt2500pci.ko".
  63. config RT2500PCI_LEDS
  64. bool "Ralink rt2500 leds support"
  65. depends on RT2500PCI && NEW_LEDS
  66. select LEDS_CLASS
  67. select RT2X00_LIB_LEDS
  68. ---help---
  69. This adds support for led triggers provided my mac80211.
  70. config RT61PCI
  71. tristate "Ralink rt2501/rt61 (PCI/PCMCIA) support"
  72. depends on PCI
  73. select RT2X00_LIB_PCI
  74. select RT2X00_LIB_FIRMWARE
  75. select RT2X00_LIB_CRYPTO
  76. select CRC_ITU_T
  77. select EEPROM_93CX6
  78. ---help---
  79. This adds support for rt2501 wireless chipset family.
  80. Supported chips: RT2561, RT2561S & RT2661.
  81. When compiled as a module, this driver will be called "rt61pci.ko".
  82. config RT61PCI_LEDS
  83. bool "Ralink rt2501/rt61 leds support"
  84. depends on RT61PCI && NEW_LEDS
  85. select LEDS_CLASS
  86. select RT2X00_LIB_LEDS
  87. ---help---
  88. This adds support for led triggers provided my mac80211.
  89. config RT2500USB
  90. tristate "Ralink rt2500 (USB) support"
  91. depends on USB
  92. select RT2X00_LIB_USB
  93. ---help---
  94. This adds support for rt2500 wireless chipset family.
  95. Supported chips: RT2571 & RT2572.
  96. When compiled as a module, this driver will be called "rt2500usb.ko".
  97. config RT2500USB_LEDS
  98. bool "Ralink rt2500 leds support"
  99. depends on RT2500USB && 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 RT73USB
  105. tristate "Ralink rt2501/rt73 (USB) support"
  106. depends on USB
  107. select RT2X00_LIB_USB
  108. select RT2X00_LIB_FIRMWARE
  109. select RT2X00_LIB_CRYPTO
  110. select CRC_ITU_T
  111. ---help---
  112. This adds support for rt2501 wireless chipset family.
  113. Supported chips: RT2571W, RT2573 & RT2671.
  114. When compiled as a module, this driver will be called "rt73usb.ko".
  115. config RT73USB_LEDS
  116. bool "Ralink rt2501/rt73 leds support"
  117. depends on RT73USB && NEW_LEDS
  118. select LEDS_CLASS
  119. select RT2X00_LIB_LEDS
  120. ---help---
  121. This adds support for led triggers provided my mac80211.
  122. config RT2X00_LIB_DEBUGFS
  123. bool "Ralink debugfs support"
  124. depends on RT2X00_LIB && MAC80211_DEBUGFS
  125. ---help---
  126. Enable creation of debugfs files for the rt2x00 drivers.
  127. These debugfs files support both reading and writing of the
  128. most important register types of the rt2x00 hardware.
  129. config RT2X00_DEBUG
  130. bool "Ralink debug output"
  131. depends on RT2X00_LIB
  132. ---help---
  133. Enable debugging output for all rt2x00 modules
  134. endif