blob: 8ab62bb6b853ffc39385c92d24abba90a4f43c24 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#
3# Wireless LAN device configuration
4#
5
Luis R. Rodriguez44175272009-09-01 08:22:40 -07006menuconfig WLAN
7 bool "Wireless LAN"
Martin Schwidefskyf54bfc02007-05-10 15:46:01 +02008 depends on !S390
Randy Dunlap9459d592010-05-10 09:24:29 -07009 depends on NET
Johannes Bergeab2ec82009-10-09 18:17:05 +020010 select WIRELESS
Luis R. Rodriguezff4d5722009-09-11 04:43:29 -040011 default y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090012 help
Luis R. Rodriguez44175272009-09-01 08:22:40 -070013 This section contains all the pre 802.11 and 802.11 wireless
14 device drivers. For a complete list of drivers and documentation
15 on them refer to the wireless wiki:
16
17 http://wireless.kernel.org/en/users/Drivers
18
19if WLAN
Johannes Berg2a5e1c02007-04-23 12:19:12 -070020
Johannes Berg8f205422016-10-18 10:28:57 +020021config WIRELESS_WDS
22 bool "mac80211-based legacy WDS support" if EXPERT
23 help
24 This option enables the deprecated WDS support, the newer
25 mac80211-based 4-addr AP/client support supersedes it with
26 a much better feature set (HT, VHT, ...)
27
28 We plan to remove this option and code, so if you find
29 that you have to enable it, please let us know on the
30 linux-wireless@vger.kernel.org mailing list, so we can
31 help you migrate to 4-addr AP/client (or, if it's really
32 necessary, give up on our plan of removing it).
33
Kalle Valod4a17302015-11-17 19:49:19 +020034source "drivers/net/wireless/admtek/Kconfig"
Kalle Valob5c9b4f2015-11-18 10:38:32 +020035source "drivers/net/wireless/ath/Kconfig"
Kalle Valo30fe0f92015-11-17 19:49:20 +020036source "drivers/net/wireless/atmel/Kconfig"
Kalle Valo58619b12015-11-17 19:49:23 +020037source "drivers/net/wireless/broadcom/Kconfig"
Kalle Valo30db0ca2015-11-17 19:49:19 +020038source "drivers/net/wireless/cisco/Kconfig"
Kalle Valo367a1092015-11-17 20:24:59 +020039source "drivers/net/wireless/intel/Kconfig"
Kalle Valoeb4f98d2015-11-18 09:42:58 +020040source "drivers/net/wireless/intersil/Kconfig"
Kalle Valof988d642015-11-17 21:07:19 +020041source "drivers/net/wireless/marvell/Kconfig"
Kalle Valo7b09ed52015-11-18 10:23:52 +020042source "drivers/net/wireless/mediatek/Kconfig"
Kalle Valo33aca942015-11-18 10:18:44 +020043source "drivers/net/wireless/ralink/Kconfig"
Kalle Valo62141722015-11-18 10:09:24 +020044source "drivers/net/wireless/realtek/Kconfig"
Kalle Valo941a9672015-11-18 10:15:33 +020045source "drivers/net/wireless/rsi/Kconfig"
Kalle Valo560424e2015-11-17 20:09:02 +020046source "drivers/net/wireless/st/Kconfig"
Kalle Valobd842172015-11-18 10:27:43 +020047source "drivers/net/wireless/ti/Kconfig"
Kalle Valoed0ad062015-11-18 07:39:37 +020048source "drivers/net/wireless/zydas/Kconfig"
Igor Mitsyanko98f44cb2017-05-11 14:51:01 -070049source "drivers/net/wireless/quantenna/Kconfig"
Kalle Valod4a17302015-11-17 19:49:19 +020050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051config PCMCIA_RAYCS
Erik Ekman8476a652008-12-30 22:49:28 +010052 tristate "Aviator/Raytheon 2.4GHz wireless support"
John W. Linville133d7c62009-10-28 16:29:30 -040053 depends on PCMCIA
Johannes Berg2a5e1c02007-04-23 12:19:12 -070054 select WIRELESS_EXT
Johannes Berg3d23e342009-09-29 23:27:28 +020055 select WEXT_SPY
56 select WEXT_PRIV
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090057 help
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 Say Y here if you intend to attach an Aviator/Raytheon PCMCIA
59 (PC-card) wireless Ethernet networking card to your computer.
Mauro Carvalho Chehab8c6e1722020-04-30 18:04:18 +020060 Please read the file <file:Documentation/networking/ray_cs.rst> for
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 details.
62
63 To compile this driver as a module, choose M here: the module will be
64 called ray_cs. If unsure, say N.
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066config PCMCIA_WL3501
Johannes Berg3d23e342009-09-29 23:27:28 +020067 tristate "Planet WL3501 PCMCIA cards"
Zhao, Gang4c59ff22014-03-01 14:26:29 +080068 depends on CFG80211 && PCMCIA
Johannes Berg3d23e342009-09-29 23:27:28 +020069 select WIRELESS_EXT
70 select WEXT_SPY
71 help
72 A driver for WL3501 PCMCIA 802.11 wireless cards made by Planet.
73 It has basic support for Linux wireless extensions and initial
74 micro support for ethtool.
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Kalle Valo6d808eb2015-11-18 10:45:54 +020076config MAC80211_HWSIM
77 tristate "Simulated radio testing tool for mac80211"
78 depends on MAC80211
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090079 help
Kalle Valo6d808eb2015-11-18 10:45:54 +020080 This driver is a developer testing tool that can be used to test
81 IEEE 802.11 networking stack (mac80211) functionality. This is not
82 needed for normal wireless LAN usage and is only for testing. See
83 Documentation/networking/mac80211_hwsim for more information on how
84 to use this tool.
85
86 To compile this driver as a module, choose M here: the module will be
87 called mac80211_hwsim. If unsure, say N.
88
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020089config USB_NET_RNDIS_WLAN
90 tristate "Wireless RNDIS USB support"
Kees Cook798f4e52013-01-22 10:30:35 -080091 depends on USB
Johannes Berg0aa82042009-06-03 18:30:31 +020092 depends on CFG80211
Francois Romieu269f8cb2014-08-07 00:36:40 +020093 select USB_NET_DRIVERS
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020094 select USB_USBNET
95 select USB_NET_CDCETHER
96 select USB_NET_RNDIS_HOST
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090097 help
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +020098 This is a driver for wireless RNDIS devices.
99 These are USB based adapters found in devices such as:
100
101 Buffalo WLI-U2-KG125S
102 U.S. Robotics USR5421
103 Belkin F5D7051
104 Linksys WUSB54GSv2
105 Linksys WUSB54GSC
106 Asus WL169gE
107 Eminent EM4045
108 BT Voyager 1055
109 Linksys WUSB54GSv1
110 U.S. Robotics USR5420
111 BUFFALO WLI-USB-G54
112
113 All of these devices are based on Broadcom 4320 chip which is the
114 only wireless RNDIS chip known to date.
115
116 If you choose to build a module, it'll be called rndis_wlan.
117
Cody Schuffelenc7cdba32018-11-20 19:14:49 -0800118config VIRT_WIFI
119 tristate "Wifi wrapper for ethernet drivers"
120 depends on CFG80211
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900121 help
Cody Schuffelenc7cdba32018-11-20 19:14:49 -0800122 This option adds support for ethernet connections to appear as if they
123 are wifi connections through a special rtnetlink device.
124
Luis R. Rodriguez44175272009-09-01 08:22:40 -0700125endif # WLAN