-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Includes minor cleanups from Adrian Bunk <bunk@stusta.de>.
- Loading branch information
Jouni Malinen
authored and
Jeff Garzik
committed
May 13, 2005
1 parent
88d7bd8
commit ff1d276
Showing
34 changed files
with
21,602 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
config HOSTAP | ||
tristate "IEEE 802.11 for Host AP (Prism2/2.5/3 and WEP/TKIP/CCMP)" | ||
depends on NET_RADIO | ||
---help--- | ||
Shared driver code for IEEE 802.11b wireless cards based on | ||
Intersil Prism2/2.5/3 chipset. This driver supports so called | ||
Host AP mode that allows the card to act as an IEEE 802.11 | ||
access point. | ||
|
||
In addition, this includes generic IEEE 802.11 code, e.g., for | ||
WEP/TKIP/CCMP encryption that can be shared with other drivers. | ||
|
||
See <http://hostap.epitest.fi/> for more information about the | ||
Host AP driver configuration and tools. This site includes | ||
information and tools (hostapd and wpa_supplicant) for WPA/WPA2 | ||
support. | ||
|
||
This option includes the base Host AP driver code that is shared by | ||
different hardware models. You will also need to enable support for | ||
PLX/PCI/CS version of the driver to actually use the driver. | ||
|
||
The driver can be compiled as a module and it will be called | ||
"hostap.ko". | ||
|
||
config HOSTAP_WEP | ||
tristate "IEEE 802.11 WEP encryption" | ||
depends on HOSTAP | ||
select CRYPTO | ||
---help--- | ||
Software implementation of IEEE 802.11 WEP encryption. | ||
|
||
This can be compiled as a modules and it will be called | ||
"hostap_crypt_wep.ko". | ||
|
||
config HOSTAP_TKIP | ||
tristate "IEEE 802.11 TKIP encryption" | ||
depends on HOSTAP | ||
select CRYPTO | ||
---help--- | ||
Software implementation of IEEE 802.11 TKIP encryption. | ||
|
||
This can be compiled as a modules and it will be called | ||
"hostap_crypt_tkip.ko". | ||
|
||
config HOSTAP_CCMP | ||
tristate "IEEE 802.11 CCMP encryption" | ||
depends on HOSTAP | ||
select CRYPTO | ||
---help--- | ||
Software implementation of IEEE 802.11 CCMP encryption. | ||
|
||
This can be compiled as a modules and it will be called | ||
"hostap_crypt_ccmp.ko". | ||
|
||
config HOSTAP_FIRMWARE | ||
bool "Support downloading firmware images with Host AP driver" | ||
depends on HOSTAP | ||
---help--- | ||
Configure Host AP driver to include support for firmware image | ||
download. Current version supports only downloading to volatile, i.e., | ||
RAM memory. Flash upgrade is not yet supported. | ||
|
||
Firmware image downloading needs user space tool, prism2_srec. It is | ||
available from http://hostap.epitest.fi/. | ||
|
||
config HOSTAP_PLX | ||
tristate "Host AP driver for Prism2/2.5/3 in PLX9052 PCI adaptors" | ||
depends on PCI && HOSTAP | ||
---help--- | ||
Host AP driver's version for Prism2/2.5/3 PC Cards in PLX9052 based | ||
PCI adaptors. | ||
|
||
"Host AP support for Prism2/2.5/3 IEEE 802.11b" is required for this | ||
driver and its help text includes more information about the Host AP | ||
driver. | ||
|
||
The driver can be compiled as a module and will be named | ||
"hostap_plx.ko". | ||
|
||
config HOSTAP_PCI | ||
tristate "Host AP driver for Prism2.5 PCI adaptors" | ||
depends on PCI && HOSTAP | ||
---help--- | ||
Host AP driver's version for Prism2.5 PCI adaptors. | ||
|
||
"Host AP support for Prism2/2.5/3 IEEE 802.11b" is required for this | ||
driver and its help text includes more information about the Host AP | ||
driver. | ||
|
||
The driver can be compiled as a module and will be named | ||
"hostap_pci.ko". | ||
|
||
config HOSTAP_CS | ||
tristate "Host AP driver for Prism2/2.5/3 PC Cards" | ||
depends on PCMCIA!=n && HOSTAP | ||
---help--- | ||
Host AP driver's version for Prism2/2.5/3 PC Cards. | ||
|
||
"Host AP support for Prism2/2.5/3 IEEE 802.11b" is required for this | ||
driver and its help text includes more information about the Host AP | ||
driver. | ||
|
||
The driver can be compiled as a module and will be named | ||
"hostap_cs.ko". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
obj-$(CONFIG_HOSTAP) += hostap.o | ||
obj-$(CONFIG_HOSTAP_WEP) += hostap_crypt_wep.o | ||
obj-$(CONFIG_HOSTAP_TKIP) += hostap_crypt_tkip.o | ||
obj-$(CONFIG_HOSTAP_CCMP) += hostap_crypt_ccmp.o | ||
|
||
obj-$(CONFIG_HOSTAP_CS) += hostap_cs.o | ||
obj-$(CONFIG_HOSTAP_PLX) += hostap_plx.o | ||
obj-$(CONFIG_HOSTAP_PCI) += hostap_pci.o |
Oops, something went wrong.