Kconfig 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config HOSTAP
  3. tristate "IEEE 802.11 for Host AP (Prism2/2.5/3 and WEP/TKIP/CCMP)"
  4. select WIRELESS_EXT
  5. select WEXT_SPY
  6. select WEXT_PRIV
  7. select CRYPTO
  8. select CRYPTO_MICHAEL_MIC
  9. select CRC32
  10. select LIB80211
  11. select LIB80211_CRYPT_WEP
  12. select LIB80211_CRYPT_TKIP
  13. select LIB80211_CRYPT_CCMP
  14. help
  15. Shared driver code for IEEE 802.11b wireless cards based on
  16. Intersil Prism2/2.5/3 chipset. This driver supports so called
  17. Host AP mode that allows the card to act as an IEEE 802.11
  18. access point.
  19. See <http://hostap.epitest.fi/> for more information about the
  20. Host AP driver configuration and tools. This site includes
  21. information and tools (hostapd and wpa_supplicant) for WPA/WPA2
  22. support.
  23. This option includes the base Host AP driver code that is shared by
  24. different hardware models. You will also need to enable support for
  25. PLX/PCI/CS version of the driver to actually use the driver.
  26. The driver can be compiled as a module and it will be called
  27. hostap.
  28. config HOSTAP_FIRMWARE
  29. bool "Support downloading firmware images with Host AP driver"
  30. depends on HOSTAP
  31. help
  32. Configure Host AP driver to include support for firmware image
  33. download. This option by itself only enables downloading to the
  34. volatile memory, i.e. the card RAM. This option is required to
  35. support cards that don't have firmware in flash, such as D-Link
  36. DWL-520 rev E and D-Link DWL-650 rev P.
  37. Firmware image downloading needs a user space tool, prism2_srec.
  38. It is available from http://hostap.epitest.fi/.
  39. config HOSTAP_FIRMWARE_NVRAM
  40. bool "Support for non-volatile firmware download"
  41. depends on HOSTAP_FIRMWARE
  42. help
  43. Allow Host AP driver to write firmware images to the non-volatile
  44. card memory, i.e. flash memory that survives power cycling.
  45. Enable this option if you want to be able to change card firmware
  46. permanently.
  47. Firmware image downloading needs a user space tool, prism2_srec.
  48. It is available from http://hostap.epitest.fi/.
  49. config HOSTAP_PLX
  50. tristate "Host AP driver for Prism2/2.5/3 in PLX9052 PCI adaptors"
  51. depends on PCI && HOSTAP
  52. help
  53. Host AP driver's version for Prism2/2.5/3 PC Cards in PLX9052 based
  54. PCI adaptors.
  55. "Host AP support for Prism2/2.5/3 IEEE 802.11b" is required for this
  56. driver and its help text includes more information about the Host AP
  57. driver.
  58. The driver can be compiled as a module and will be named
  59. hostap_plx.
  60. config HOSTAP_PCI
  61. tristate "Host AP driver for Prism2.5 PCI adaptors"
  62. depends on PCI && HOSTAP
  63. help
  64. Host AP driver's version for Prism2.5 PCI adaptors.
  65. "Host AP support for Prism2/2.5/3 IEEE 802.11b" is required for this
  66. driver and its help text includes more information about the Host AP
  67. driver.
  68. The driver can be compiled as a module and will be named
  69. hostap_pci.
  70. config HOSTAP_CS
  71. tristate "Host AP driver for Prism2/2.5/3 PC Cards"
  72. depends on PCMCIA && HOSTAP
  73. help
  74. Host AP driver's version for Prism2/2.5/3 PC Cards.
  75. "Host AP support for Prism2/2.5/3 IEEE 802.11b" is required for this
  76. driver and its help text includes more information about the Host AP
  77. driver.
  78. The driver can be compiled as a module and will be named
  79. hostap_cs.