Kconfig 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. #
  2. # Wireless LAN device configuration
  3. #
  4. menuconfig WLAN
  5. bool "Wireless LAN"
  6. depends on !S390
  7. depends on NET
  8. select WIRELESS
  9. default y
  10. ---help---
  11. This section contains all the pre 802.11 and 802.11 wireless
  12. device drivers. For a complete list of drivers and documentation
  13. on them refer to the wireless wiki:
  14. http://wireless.kernel.org/en/users/Drivers
  15. if WLAN
  16. config WIRELESS_WDS
  17. bool "mac80211-based legacy WDS support" if EXPERT
  18. help
  19. This option enables the deprecated WDS support, the newer
  20. mac80211-based 4-addr AP/client support supersedes it with
  21. a much better feature set (HT, VHT, ...)
  22. We plan to remove this option and code, so if you find
  23. that you have to enable it, please let us know on the
  24. linux-wireless@vger.kernel.org mailing list, so we can
  25. help you migrate to 4-addr AP/client (or, if it's really
  26. necessary, give up on our plan of removing it).
  27. source "drivers/net/wireless/admtek/Kconfig"
  28. source "drivers/net/wireless/ath/Kconfig"
  29. source "drivers/net/wireless/atmel/Kconfig"
  30. source "drivers/net/wireless/broadcom/Kconfig"
  31. source "drivers/net/wireless/cisco/Kconfig"
  32. source "drivers/net/wireless/intel/Kconfig"
  33. source "drivers/net/wireless/intersil/Kconfig"
  34. source "drivers/net/wireless/marvell/Kconfig"
  35. source "drivers/net/wireless/mediatek/Kconfig"
  36. source "drivers/net/wireless/ralink/Kconfig"
  37. source "drivers/net/wireless/realtek/Kconfig"
  38. source "drivers/net/wireless/rsi/Kconfig"
  39. source "drivers/net/wireless/st/Kconfig"
  40. source "drivers/net/wireless/ti/Kconfig"
  41. source "drivers/net/wireless/zydas/Kconfig"
  42. source "drivers/net/wireless/quantenna/Kconfig"
  43. config PCMCIA_RAYCS
  44. tristate "Aviator/Raytheon 2.4GHz wireless support"
  45. depends on PCMCIA
  46. select WIRELESS_EXT
  47. select WEXT_SPY
  48. select WEXT_PRIV
  49. ---help---
  50. Say Y here if you intend to attach an Aviator/Raytheon PCMCIA
  51. (PC-card) wireless Ethernet networking card to your computer.
  52. Please read the file <file:Documentation/networking/ray_cs.txt> for
  53. details.
  54. To compile this driver as a module, choose M here: the module will be
  55. called ray_cs. If unsure, say N.
  56. config PCMCIA_WL3501
  57. tristate "Planet WL3501 PCMCIA cards"
  58. depends on CFG80211 && PCMCIA
  59. select WIRELESS_EXT
  60. select WEXT_SPY
  61. help
  62. A driver for WL3501 PCMCIA 802.11 wireless cards made by Planet.
  63. It has basic support for Linux wireless extensions and initial
  64. micro support for ethtool.
  65. config MAC80211_HWSIM
  66. tristate "Simulated radio testing tool for mac80211"
  67. depends on MAC80211
  68. ---help---
  69. This driver is a developer testing tool that can be used to test
  70. IEEE 802.11 networking stack (mac80211) functionality. This is not
  71. needed for normal wireless LAN usage and is only for testing. See
  72. Documentation/networking/mac80211_hwsim for more information on how
  73. to use this tool.
  74. To compile this driver as a module, choose M here: the module will be
  75. called mac80211_hwsim. If unsure, say N.
  76. config USB_NET_RNDIS_WLAN
  77. tristate "Wireless RNDIS USB support"
  78. depends on USB
  79. depends on CFG80211
  80. select USB_NET_DRIVERS
  81. select USB_USBNET
  82. select USB_NET_CDCETHER
  83. select USB_NET_RNDIS_HOST
  84. ---help---
  85. This is a driver for wireless RNDIS devices.
  86. These are USB based adapters found in devices such as:
  87. Buffalo WLI-U2-KG125S
  88. U.S. Robotics USR5421
  89. Belkin F5D7051
  90. Linksys WUSB54GSv2
  91. Linksys WUSB54GSC
  92. Asus WL169gE
  93. Eminent EM4045
  94. BT Voyager 1055
  95. Linksys WUSB54GSv1
  96. U.S. Robotics USR5420
  97. BUFFALO WLI-USB-G54
  98. All of these devices are based on Broadcom 4320 chip which is the
  99. only wireless RNDIS chip known to date.
  100. If you choose to build a module, it'll be called rndis_wlan.
  101. endif # WLAN