Kconfig 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. menuconfig 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 RT2400PCI
  16. tristate "Ralink rt2400 (PCI/PCMCIA) support"
  17. depends on PCI
  18. select RT2X00_LIB_PCI
  19. select EEPROM_93CX6
  20. ---help---
  21. This adds support for rt2400 wireless chipset family.
  22. Supported chips: RT2460.
  23. When compiled as a module, this driver will be called "rt2400pci.ko".
  24. config RT2500PCI
  25. tristate "Ralink rt2500 (PCI/PCMCIA) support"
  26. depends on PCI
  27. select RT2X00_LIB_PCI
  28. select EEPROM_93CX6
  29. ---help---
  30. This adds support for rt2500 wireless chipset family.
  31. Supported chips: RT2560.
  32. When compiled as a module, this driver will be called "rt2500pci.ko".
  33. config RT61PCI
  34. tristate "Ralink rt2501/rt61 (PCI/PCMCIA) support"
  35. depends on PCI
  36. select RT2X00_LIB_PCI
  37. select RT2X00_LIB_FIRMWARE
  38. select RT2X00_LIB_CRYPTO
  39. select CRC_ITU_T
  40. select EEPROM_93CX6
  41. ---help---
  42. This adds support for rt2501 wireless chipset family.
  43. Supported chips: RT2561, RT2561S & RT2661.
  44. When compiled as a module, this driver will be called "rt61pci.ko".
  45. config RT2500USB
  46. tristate "Ralink rt2500 (USB) support"
  47. depends on USB
  48. select RT2X00_LIB_USB
  49. select RT2X00_LIB_CRYPTO
  50. ---help---
  51. This adds support for rt2500 wireless chipset family.
  52. Supported chips: RT2571 & RT2572.
  53. When compiled as a module, this driver will be called "rt2500usb.ko".
  54. config RT73USB
  55. tristate "Ralink rt2501/rt73 (USB) support"
  56. depends on USB
  57. select RT2X00_LIB_USB
  58. select RT2X00_LIB_FIRMWARE
  59. select RT2X00_LIB_CRYPTO
  60. select CRC_ITU_T
  61. ---help---
  62. This adds support for rt2501 wireless chipset family.
  63. Supported chips: RT2571W, RT2573 & RT2671.
  64. When compiled as a module, this driver will be called "rt73usb.ko".
  65. config RT2X00_LIB_PCI
  66. tristate
  67. select RT2X00_LIB
  68. config RT2X00_LIB_USB
  69. tristate
  70. select RT2X00_LIB
  71. config RT2X00_LIB
  72. tristate
  73. config RT2X00_LIB_FIRMWARE
  74. boolean
  75. select FW_LOADER
  76. config RT2X00_LIB_CRYPTO
  77. boolean
  78. config RT2X00_LIB_RFKILL
  79. boolean
  80. default y if (RT2X00_LIB=y && INPUT=y) || (RT2X00_LIB=m && INPUT!=n)
  81. select INPUT_POLLDEV
  82. comment "rt2x00 rfkill support disabled due to modularized INPUT and built-in rt2x00"
  83. depends on RT2X00_LIB=y && INPUT=m
  84. config RT2X00_LIB_LEDS
  85. boolean
  86. default y if (RT2X00_LIB=y && LEDS_CLASS=y) || (RT2X00_LIB=m && LEDS_CLASS!=n)
  87. comment "rt2x00 leds support disabled due to modularized LEDS_CLASS and built-in rt2x00"
  88. depends on RT2X00_LIB=y && LEDS_CLASS=m
  89. config RT2X00_LIB_DEBUGFS
  90. bool "Ralink debugfs support"
  91. depends on RT2X00_LIB && MAC80211_DEBUGFS
  92. ---help---
  93. Enable creation of debugfs files for the rt2x00 drivers.
  94. These debugfs files support both reading and writing of the
  95. most important register types of the rt2x00 hardware.
  96. config RT2X00_DEBUG
  97. bool "Ralink debug output"
  98. depends on RT2X00_LIB
  99. ---help---
  100. Enable debugging output for all rt2x00 modules
  101. endif