Kconfig 3.2 KB

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