Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. source "drivers/net/wireless/admtek/Kconfig"
  17. source "drivers/net/wireless/ath/Kconfig"
  18. source "drivers/net/wireless/atmel/Kconfig"
  19. source "drivers/net/wireless/broadcom/Kconfig"
  20. source "drivers/net/wireless/cisco/Kconfig"
  21. source "drivers/net/wireless/intel/Kconfig"
  22. source "drivers/net/wireless/intersil/Kconfig"
  23. source "drivers/net/wireless/marvell/Kconfig"
  24. source "drivers/net/wireless/mediatek/Kconfig"
  25. source "drivers/net/wireless/ralink/Kconfig"
  26. source "drivers/net/wireless/realtek/Kconfig"
  27. source "drivers/net/wireless/rsi/Kconfig"
  28. source "drivers/net/wireless/st/Kconfig"
  29. source "drivers/net/wireless/ti/Kconfig"
  30. source "drivers/net/wireless/zydas/Kconfig"
  31. config PCMCIA_RAYCS
  32. tristate "Aviator/Raytheon 2.4GHz wireless support"
  33. depends on PCMCIA
  34. select WIRELESS_EXT
  35. select WEXT_SPY
  36. select WEXT_PRIV
  37. ---help---
  38. Say Y here if you intend to attach an Aviator/Raytheon PCMCIA
  39. (PC-card) wireless Ethernet networking card to your computer.
  40. Please read the file <file:Documentation/networking/ray_cs.txt> for
  41. details.
  42. To compile this driver as a module, choose M here: the module will be
  43. called ray_cs. If unsure, say N.
  44. config PCMCIA_WL3501
  45. tristate "Planet WL3501 PCMCIA cards"
  46. depends on CFG80211 && PCMCIA
  47. select WIRELESS_EXT
  48. select WEXT_SPY
  49. help
  50. A driver for WL3501 PCMCIA 802.11 wireless cards made by Planet.
  51. It has basic support for Linux wireless extensions and initial
  52. micro support for ethtool.
  53. config MAC80211_HWSIM
  54. tristate "Simulated radio testing tool for mac80211"
  55. depends on MAC80211
  56. ---help---
  57. This driver is a developer testing tool that can be used to test
  58. IEEE 802.11 networking stack (mac80211) functionality. This is not
  59. needed for normal wireless LAN usage and is only for testing. See
  60. Documentation/networking/mac80211_hwsim for more information on how
  61. to use this tool.
  62. To compile this driver as a module, choose M here: the module will be
  63. called mac80211_hwsim. If unsure, say N.
  64. config USB_NET_RNDIS_WLAN
  65. tristate "Wireless RNDIS USB support"
  66. depends on USB
  67. depends on CFG80211
  68. select USB_NET_DRIVERS
  69. select USB_USBNET
  70. select USB_NET_CDCETHER
  71. select USB_NET_RNDIS_HOST
  72. ---help---
  73. This is a driver for wireless RNDIS devices.
  74. These are USB based adapters found in devices such as:
  75. Buffalo WLI-U2-KG125S
  76. U.S. Robotics USR5421
  77. Belkin F5D7051
  78. Linksys WUSB54GSv2
  79. Linksys WUSB54GSC
  80. Asus WL169gE
  81. Eminent EM4045
  82. BT Voyager 1055
  83. Linksys WUSB54GSv1
  84. U.S. Robotics USR5420
  85. BUFFALO WLI-USB-G54
  86. All of these devices are based on Broadcom 4320 chip which is the
  87. only wireless RNDIS chip known to date.
  88. If you choose to build a module, it'll be called rndis_wlan.
  89. endif # WLAN