Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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
  38. depends on NEW_LEDS
  39. depends on LEDS_CLASS
  40. default y
  41. config RT2400PCI
  42. tristate "Ralink rt2400 (PCI/PCMCIA) support"
  43. depends on PCI
  44. select RT2X00_LIB_PCI
  45. select EEPROM_93CX6
  46. ---help---
  47. This adds support for rt2400 wireless chipset family.
  48. Supported chips: RT2460.
  49. When compiled as a module, this driver will be called "rt2400pci.ko".
  50. config RT2500PCI
  51. tristate "Ralink rt2500 (PCI/PCMCIA) support"
  52. depends on PCI
  53. select RT2X00_LIB_PCI
  54. select EEPROM_93CX6
  55. ---help---
  56. This adds support for rt2500 wireless chipset family.
  57. Supported chips: RT2560.
  58. When compiled as a module, this driver will be called "rt2500pci.ko".
  59. config RT61PCI
  60. tristate "Ralink rt2501/rt61 (PCI/PCMCIA) support"
  61. depends on PCI
  62. select RT2X00_LIB_PCI
  63. select RT2X00_LIB_FIRMWARE
  64. select RT2X00_LIB_CRYPTO
  65. select CRC_ITU_T
  66. select EEPROM_93CX6
  67. ---help---
  68. This adds support for rt2501 wireless chipset family.
  69. Supported chips: RT2561, RT2561S & RT2661.
  70. When compiled as a module, this driver will be called "rt61pci.ko".
  71. config RT2500USB
  72. tristate "Ralink rt2500 (USB) support"
  73. depends on USB
  74. select RT2X00_LIB_USB
  75. ---help---
  76. This adds support for rt2500 wireless chipset family.
  77. Supported chips: RT2571 & RT2572.
  78. When compiled as a module, this driver will be called "rt2500usb.ko".
  79. config RT73USB
  80. tristate "Ralink rt2501/rt73 (USB) support"
  81. depends on USB
  82. select RT2X00_LIB_USB
  83. select RT2X00_LIB_FIRMWARE
  84. select RT2X00_LIB_CRYPTO
  85. select CRC_ITU_T
  86. ---help---
  87. This adds support for rt2501 wireless chipset family.
  88. Supported chips: RT2571W, RT2573 & RT2671.
  89. When compiled as a module, this driver will be called "rt73usb.ko".
  90. config RT2X00_LIB_DEBUGFS
  91. bool "Ralink debugfs support"
  92. depends on RT2X00_LIB && MAC80211_DEBUGFS
  93. ---help---
  94. Enable creation of debugfs files for the rt2x00 drivers.
  95. These debugfs files support both reading and writing of the
  96. most important register types of the rt2x00 hardware.
  97. config RT2X00_DEBUG
  98. bool "Ralink debug output"
  99. depends on RT2X00_LIB
  100. ---help---
  101. Enable debugging output for all rt2x00 modules
  102. endif