Kconfig 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. config PCMCIA_RAYCS
  43. tristate "Aviator/Raytheon 2.4GHz wireless support"
  44. depends on PCMCIA
  45. select WIRELESS_EXT
  46. select WEXT_SPY
  47. select WEXT_PRIV
  48. ---help---
  49. Say Y here if you intend to attach an Aviator/Raytheon PCMCIA
  50. (PC-card) wireless Ethernet networking card to your computer.
  51. Please read the file <file:Documentation/networking/ray_cs.txt> for
  52. details.
  53. To compile this driver as a module, choose M here: the module will be
  54. called ray_cs. If unsure, say N.
  55. config PCMCIA_WL3501
  56. tristate "Planet WL3501 PCMCIA cards"
  57. depends on CFG80211 && PCMCIA
  58. select WIRELESS_EXT
  59. select WEXT_SPY
  60. help
  61. A driver for WL3501 PCMCIA 802.11 wireless cards made by Planet.
  62. It has basic support for Linux wireless extensions and initial
  63. micro support for ethtool.
  64. config MAC80211_HWSIM
  65. tristate "Simulated radio testing tool for mac80211"
  66. depends on MAC80211
  67. ---help---
  68. This driver is a developer testing tool that can be used to test
  69. IEEE 802.11 networking stack (mac80211) functionality. This is not
  70. needed for normal wireless LAN usage and is only for testing. See
  71. Documentation/networking/mac80211_hwsim for more information on how
  72. to use this tool.
  73. To compile this driver as a module, choose M here: the module will be
  74. called mac80211_hwsim. If unsure, say N.
  75. config USB_NET_RNDIS_WLAN
  76. tristate "Wireless RNDIS USB support"
  77. depends on USB
  78. depends on CFG80211
  79. select USB_NET_DRIVERS
  80. select USB_USBNET
  81. select USB_NET_CDCETHER
  82. select USB_NET_RNDIS_HOST
  83. ---help---
  84. This is a driver for wireless RNDIS devices.
  85. These are USB based adapters found in devices such as:
  86. Buffalo WLI-U2-KG125S
  87. U.S. Robotics USR5421
  88. Belkin F5D7051
  89. Linksys WUSB54GSv2
  90. Linksys WUSB54GSC
  91. Asus WL169gE
  92. Eminent EM4045
  93. BT Voyager 1055
  94. Linksys WUSB54GSv1
  95. U.S. Robotics USR5420
  96. BUFFALO WLI-USB-G54
  97. All of these devices are based on Broadcom 4320 chip which is the
  98. only wireless RNDIS chip known to date.
  99. If you choose to build a module, it'll be called rndis_wlan.
  100. endif # WLAN