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