Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config WLAN_VENDOR_CISCO
  3. bool "Cisco devices"
  4. default y
  5. help
  6. If you have a wireless card belonging to this class, say Y.
  7. Note that the answer to this question doesn't directly affect the
  8. kernel: saying N will just cause the configurator to skip all the
  9. questions about these cards. If you say Y, you will be asked for
  10. your specific card in the following questions.
  11. if WLAN_VENDOR_CISCO
  12. config AIRO
  13. tristate "Cisco/Aironet 34X/35X/4500/4800 ISA and PCI cards"
  14. depends on CFG80211 && ISA_DMA_API && (PCI || BROKEN)
  15. select WIRELESS_EXT
  16. select CRYPTO
  17. select CRYPTO_SKCIPHER
  18. select WEXT_SPY
  19. select WEXT_PRIV
  20. help
  21. This is the standard Linux driver to support Cisco/Aironet ISA and
  22. PCI 802.11 wireless cards.
  23. It supports the new 802.11b cards from Cisco (Cisco 34X, Cisco 35X
  24. - with or without encryption) as well as card before the Cisco
  25. acquisition (Aironet 4500, Aironet 4800, Aironet 4800B).
  26. This driver support both the standard Linux Wireless Extensions
  27. and Cisco proprietary API, so both the Linux Wireless Tools and the
  28. Cisco Linux utilities can be used to configure the card.
  29. The driver can be compiled as a module and will be named "airo".
  30. config AIRO_CS
  31. tristate "Cisco/Aironet 34X/35X/4500/4800 PCMCIA cards"
  32. depends on CFG80211 && PCMCIA
  33. select WIRELESS_EXT
  34. select WEXT_SPY
  35. select WEXT_PRIV
  36. select CRYPTO
  37. select CRYPTO_AES
  38. select CRYPTO_CTR
  39. help
  40. This is the standard Linux driver to support Cisco/Aironet PCMCIA
  41. 802.11 wireless cards. This driver is the same as the Aironet
  42. driver part of the Linux Pcmcia package.
  43. It supports the new 802.11b cards from Cisco (Cisco 34X, Cisco 35X
  44. - with or without encryption) as well as card before the Cisco
  45. acquisition (Aironet 4500, Aironet 4800, Aironet 4800B). It also
  46. supports OEM of Cisco such as the DELL TrueMobile 4800 and Xircom
  47. 802.11b cards.
  48. This driver support both the standard Linux Wireless Extensions
  49. and Cisco proprietary API, so both the Linux Wireless Tools and the
  50. Cisco Linux utilities can be used to configure the card.
  51. endif # WLAN_VENDOR_CISCO