Kconfig 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. #
  2. # Wireless LAN device configuration
  3. #
  4. menuconfig WLAN
  5. bool "Wireless LAN"
  6. depends on !S390
  7. select WIRELESS
  8. default y
  9. ---help---
  10. This section contains all the pre 802.11 and 802.11 wireless
  11. device drivers. For a complete list of drivers and documentation
  12. on them refer to the wireless wiki:
  13. http://wireless.kernel.org/en/users/Drivers
  14. if WLAN
  15. config PCMCIA_RAYCS
  16. tristate "Aviator/Raytheon 2.4GHz wireless support"
  17. depends on PCMCIA
  18. select WIRELESS_EXT
  19. select WEXT_SPY
  20. select WEXT_PRIV
  21. ---help---
  22. Say Y here if you intend to attach an Aviator/Raytheon PCMCIA
  23. (PC-card) wireless Ethernet networking card to your computer.
  24. Please read the file <file:Documentation/networking/ray_cs.txt> for
  25. details.
  26. To compile this driver as a module, choose M here: the module will be
  27. called ray_cs. If unsure, say N.
  28. config LIBERTAS_THINFIRM
  29. tristate "Marvell 8xxx Libertas WLAN driver support with thin firmware"
  30. depends on MAC80211
  31. select FW_LOADER
  32. ---help---
  33. A library for Marvell Libertas 8xxx devices using thinfirm.
  34. config LIBERTAS_THINFIRM_USB
  35. tristate "Marvell Libertas 8388 USB 802.11b/g cards with thin firmware"
  36. depends on LIBERTAS_THINFIRM && USB
  37. ---help---
  38. A driver for Marvell Libertas 8388 USB devices using thinfirm.
  39. config AIRO
  40. tristate "Cisco/Aironet 34X/35X/4500/4800 ISA and PCI cards"
  41. depends on ISA_DMA_API && (PCI || BROKEN)
  42. select WIRELESS_EXT
  43. select CRYPTO
  44. select WEXT_SPY
  45. select WEXT_PRIV
  46. ---help---
  47. This is the standard Linux driver to support Cisco/Aironet ISA and
  48. PCI 802.11 wireless cards.
  49. It supports the new 802.11b cards from Cisco (Cisco 34X, Cisco 35X
  50. - with or without encryption) as well as card before the Cisco
  51. acquisition (Aironet 4500, Aironet 4800, Aironet 4800B).
  52. This driver support both the standard Linux Wireless Extensions
  53. and Cisco proprietary API, so both the Linux Wireless Tools and the
  54. Cisco Linux utilities can be used to configure the card.
  55. The driver can be compiled as a module and will be named "airo".
  56. config ATMEL
  57. tristate "Atmel at76c50x chipset 802.11b support"
  58. depends on (PCI || PCMCIA)
  59. select WIRELESS_EXT
  60. select WEXT_PRIV
  61. select FW_LOADER
  62. select CRC32
  63. ---help---
  64. A driver 802.11b wireless cards based on the Atmel fast-vnet
  65. chips. This driver supports standard Linux wireless extensions.
  66. Many cards based on this chipset do not have flash memory
  67. and need their firmware loaded at start-up. If yours is
  68. one of these, you will need to provide a firmware image
  69. to be loaded into the card by the driver. The Atmel
  70. firmware package can be downloaded from
  71. <http://www.thekelleys.org.uk/atmel>
  72. config PCI_ATMEL
  73. tristate "Atmel at76c506 PCI cards"
  74. depends on ATMEL && PCI
  75. ---help---
  76. Enable support for PCI and mini-PCI cards containing the
  77. Atmel at76c506 chip.
  78. config PCMCIA_ATMEL
  79. tristate "Atmel at76c502/at76c504 PCMCIA cards"
  80. depends on ATMEL && PCMCIA
  81. select WIRELESS_EXT
  82. select FW_LOADER
  83. select CRC32
  84. ---help---
  85. Enable support for PCMCIA cards containing the
  86. Atmel at76c502 and at76c504 chips.
  87. config AT76C50X_USB
  88. tristate "Atmel at76c503/at76c505/at76c505a USB cards"
  89. depends on MAC80211 && USB
  90. select FW_LOADER
  91. ---help---
  92. Enable support for USB Wireless devices using Atmel at76c503,
  93. at76c505 or at76c505a chips.
  94. config AIRO_CS
  95. tristate "Cisco/Aironet 34X/35X/4500/4800 PCMCIA cards"
  96. depends on PCMCIA && (BROKEN || !M32R)
  97. select WIRELESS_EXT
  98. select WEXT_SPY
  99. select CRYPTO
  100. select CRYPTO_AES
  101. ---help---
  102. This is the standard Linux driver to support Cisco/Aironet PCMCIA
  103. 802.11 wireless cards. This driver is the same as the Aironet
  104. driver part of the Linux Pcmcia package.
  105. It supports the new 802.11b cards from Cisco (Cisco 34X, Cisco 35X
  106. - with or without encryption) as well as card before the Cisco
  107. acquisition (Aironet 4500, Aironet 4800, Aironet 4800B). It also
  108. supports OEM of Cisco such as the DELL TrueMobile 4800 and Xircom
  109. 802.11b cards.
  110. This driver support both the standard Linux Wireless Extensions
  111. and Cisco proprietary API, so both the Linux Wireless Tools and the
  112. Cisco Linux utilities can be used to configure the card.
  113. config PCMCIA_WL3501
  114. tristate "Planet WL3501 PCMCIA cards"
  115. depends on EXPERIMENTAL && PCMCIA
  116. select WIRELESS_EXT
  117. select WEXT_SPY
  118. help
  119. A driver for WL3501 PCMCIA 802.11 wireless cards made by Planet.
  120. It has basic support for Linux wireless extensions and initial
  121. micro support for ethtool.
  122. config PRISM54
  123. tristate 'Intersil Prism GT/Duette/Indigo PCI/Cardbus (DEPRECATED)'
  124. depends on PCI && EXPERIMENTAL
  125. select WIRELESS_EXT
  126. select WEXT_SPY
  127. select WEXT_PRIV
  128. select FW_LOADER
  129. ---help---
  130. This enables support for FullMAC PCI/Cardbus prism54 devices. This
  131. driver is now deprecated in favor for the SoftMAC driver, p54pci.
  132. p54pci supports FullMAC PCI/Cardbus devices as well. For details on
  133. the scheduled removal of this driver on the kernel see the feature
  134. removal schedule:
  135. Documentation/feature-removal-schedule.txt
  136. For more information refer to the p54 wiki:
  137. http://wireless.kernel.org/en/users/Drivers/p54
  138. Note: You need a motherboard with DMA support to use any of these cards
  139. When built as module you get the module prism54
  140. config USB_ZD1201
  141. tristate "USB ZD1201 based Wireless device support"
  142. depends on USB
  143. select WIRELESS_EXT
  144. select WEXT_PRIV
  145. select FW_LOADER
  146. ---help---
  147. Say Y if you want to use wireless LAN adapters based on the ZyDAS
  148. ZD1201 chip.
  149. This driver makes the adapter appear as a normal Ethernet interface,
  150. typically on wlan0.
  151. The zd1201 device requires external firmware to be loaded.
  152. This can be found at http://linux-lc100020.sourceforge.net/
  153. To compile this driver as a module, choose M here: the
  154. module will be called zd1201.
  155. config USB_NET_RNDIS_WLAN
  156. tristate "Wireless RNDIS USB support"
  157. depends on USB && EXPERIMENTAL
  158. depends on CFG80211
  159. select USB_USBNET
  160. select USB_NET_CDCETHER
  161. select USB_NET_RNDIS_HOST
  162. ---help---
  163. This is a driver for wireless RNDIS devices.
  164. These are USB based adapters found in devices such as:
  165. Buffalo WLI-U2-KG125S
  166. U.S. Robotics USR5421
  167. Belkin F5D7051
  168. Linksys WUSB54GSv2
  169. Linksys WUSB54GSC
  170. Asus WL169gE
  171. Eminent EM4045
  172. BT Voyager 1055
  173. Linksys WUSB54GSv1
  174. U.S. Robotics USR5420
  175. BUFFALO WLI-USB-G54
  176. All of these devices are based on Broadcom 4320 chip which is the
  177. only wireless RNDIS chip known to date.
  178. If you choose to build a module, it'll be called rndis_wlan.
  179. config RTL8180
  180. tristate "Realtek 8180/8185 PCI support"
  181. depends on MAC80211 && PCI && EXPERIMENTAL
  182. select EEPROM_93CX6
  183. ---help---
  184. This is a driver for RTL8180 and RTL8185 based cards.
  185. These are PCI based chips found in cards such as:
  186. (RTL8185 802.11g)
  187. A-Link WL54PC
  188. (RTL8180 802.11b)
  189. Belkin F5D6020 v3
  190. Belkin F5D6020 v3
  191. Dlink DWL-610
  192. Dlink DWL-510
  193. Netgear MA521
  194. Level-One WPC-0101
  195. Acer Aspire 1357 LMi
  196. VCTnet PC-11B1
  197. Ovislink AirLive WL-1120PCM
  198. Mentor WL-PCI
  199. Linksys WPC11 v4
  200. TrendNET TEW-288PI
  201. D-Link DWL-520 Rev D
  202. Repotec RP-WP7126
  203. TP-Link TL-WN250/251
  204. Zonet ZEW1000
  205. Longshine LCS-8031-R
  206. HomeLine HLW-PCC200
  207. GigaFast WF721-AEX
  208. Planet WL-3553
  209. Encore ENLWI-PCI1-NT
  210. TrendNET TEW-266PC
  211. Gigabyte GN-WLMR101
  212. Siemens-fujitsu Amilo D1840W
  213. Edimax EW-7126
  214. PheeNet WL-11PCIR
  215. Tonze PC-2100T
  216. Planet WL-8303
  217. Dlink DWL-650 v M1
  218. Edimax EW-7106
  219. Q-Tec 770WC
  220. Topcom Skyr@cer 4011b
  221. Roper FreeLan 802.11b (edition 2004)
  222. Wistron Neweb Corp CB-200B
  223. Pentagram HorNET
  224. QTec 775WC
  225. TwinMOS Booming B Series
  226. Micronet SP906BB
  227. Sweex LC700010
  228. Surecom EP-9428
  229. Safecom SWLCR-1100
  230. Thanks to Realtek for their support!
  231. config RTL8187
  232. tristate "Realtek 8187 and 8187B USB support"
  233. depends on MAC80211 && USB
  234. select EEPROM_93CX6
  235. ---help---
  236. This is a driver for RTL8187 and RTL8187B based cards.
  237. These are USB based chips found in devices such as:
  238. Netgear WG111v2
  239. Level 1 WNC-0301USB
  240. Micronet SP907GK V5
  241. Encore ENUWI-G2
  242. Trendnet TEW-424UB
  243. ASUS P5B Deluxe/P5K Premium motherboards
  244. Toshiba Satellite Pro series of laptops
  245. Asus Wireless Link
  246. Linksys WUSB54GC-EU v2
  247. (v1 = rt73usb; v3 is rt2070-based,
  248. use staging/rt3070 or try rt2800usb)
  249. Thanks to Realtek for their support!
  250. # If possible, automatically enable LEDs for RTL8187.
  251. config RTL8187_LEDS
  252. bool
  253. depends on RTL8187 && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = RTL8187)
  254. default y
  255. config ADM8211
  256. tristate "ADMtek ADM8211 support"
  257. depends on MAC80211 && PCI && EXPERIMENTAL
  258. select CRC32
  259. select EEPROM_93CX6
  260. ---help---
  261. This driver is for ADM8211A, ADM8211B, and ADM8211C based cards.
  262. These are PCI/mini-PCI/Cardbus 802.11b chips found in cards such as:
  263. Xterasys Cardbus XN-2411b
  264. Blitz NetWave Point PC
  265. TrendNet 221pc
  266. Belkin F5D6001
  267. SMC 2635W
  268. Linksys WPC11 v1
  269. Fiberline FL-WL-200X
  270. 3com Office Connect (3CRSHPW796)
  271. Corega WLPCIB-11
  272. SMC 2602W V2 EU
  273. D-Link DWL-520 Revision C
  274. However, some of these cards have been replaced with other chips
  275. like the RTL8180L (Xterasys Cardbus XN-2411b, Belkin F5D6001) or
  276. the Ralink RT2400 (SMC2635W) without a model number change.
  277. Thanks to Infineon-ADMtek for their support of this driver.
  278. config MAC80211_HWSIM
  279. tristate "Simulated radio testing tool for mac80211"
  280. depends on MAC80211
  281. ---help---
  282. This driver is a developer testing tool that can be used to test
  283. IEEE 802.11 networking stack (mac80211) functionality. This is not
  284. needed for normal wireless LAN usage and is only for testing. See
  285. Documentation/networking/mac80211_hwsim for more information on how
  286. to use this tool.
  287. To compile this driver as a module, choose M here: the module will be
  288. called mac80211_hwsim. If unsure, say N.
  289. config MWL8K
  290. tristate "Marvell 88W8xxx PCI/PCIe Wireless support"
  291. depends on MAC80211 && PCI && EXPERIMENTAL
  292. ---help---
  293. This driver supports Marvell TOPDOG 802.11 wireless cards.
  294. To compile this driver as a module, choose M here: the module
  295. will be called mwl8k. If unsure, say N.
  296. source "drivers/net/wireless/ath/Kconfig"
  297. source "drivers/net/wireless/b43/Kconfig"
  298. source "drivers/net/wireless/b43legacy/Kconfig"
  299. source "drivers/net/wireless/hostap/Kconfig"
  300. source "drivers/net/wireless/ipw2x00/Kconfig"
  301. source "drivers/net/wireless/iwlwifi/Kconfig"
  302. source "drivers/net/wireless/iwmc3200wifi/Kconfig"
  303. source "drivers/net/wireless/libertas/Kconfig"
  304. source "drivers/net/wireless/orinoco/Kconfig"
  305. source "drivers/net/wireless/p54/Kconfig"
  306. source "drivers/net/wireless/rt2x00/Kconfig"
  307. source "drivers/net/wireless/wl12xx/Kconfig"
  308. source "drivers/net/wireless/zd1211rw/Kconfig"
  309. endif # WLAN