2005-05-13 06:48:20 +04:00
config IEEE80211
tristate "Generic IEEE 802.11 Networking Stack"
---help---
2005-07-31 21:05:43 +04:00
This option enables the hardware independent IEEE 802.11
2005-05-13 06:48:20 +04:00
networking stack.
config IEEE80211_DEBUG
bool "Enable full debugging output"
depends on IEEE80211
---help---
2005-07-31 21:05:43 +04:00
This option will enable debug tracing output for the
ieee80211 network stack.
2005-05-13 06:48:20 +04:00
2005-07-31 21:05:43 +04:00
This will result in the kernel module being ~70k larger. You
can control which debug output is sent to the kernel log by
setting the value in
2005-05-13 06:48:20 +04:00
/proc/net/ieee80211/debug_level
For example:
% echo 0x00000FFO > /proc/net/ieee80211/debug_level
2005-07-31 21:05:43 +04:00
For a list of values you can assign to debug_level, you
2005-05-13 06:48:20 +04:00
can look at the bit mask values in <net/ieee80211.h>
2005-07-31 21:05:43 +04:00
If you are not trying to debug or develop the ieee80211
2005-05-13 06:48:20 +04:00
subsystem, you most likely want to say N here.
config IEEE80211_CRYPT_WEP
tristate "IEEE 802.11 WEP encryption (802.1x)"
depends on IEEE80211
select CRYPTO
select CRYPTO_ARC4
2006-10-25 10:49:36 +04:00
select CRYPTO_ECB
2005-05-13 06:48:20 +04:00
select CRC32
---help---
2005-07-31 21:05:43 +04:00
Include software based cipher suites in support of IEEE
2005-05-13 06:48:20 +04:00
802.11's WEP. This is needed for WEP as well as 802.1x.
2007-03-25 01:56:58 +03:00
This can be compiled as a module and it will be called
2005-05-13 06:48:20 +04:00
"ieee80211_crypt_wep".
config IEEE80211_CRYPT_CCMP
tristate "IEEE 802.11i CCMP support"
depends on IEEE80211
2005-05-07 02:54:49 +04:00
select CRYPTO
2005-05-13 06:48:20 +04:00
select CRYPTO_AES
---help---
2005-07-31 21:05:43 +04:00
Include software based cipher suites in support of IEEE 802.11i
(aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with CCMP enabled
2005-05-13 06:48:20 +04:00
networks.
2007-03-25 01:56:58 +03:00
This can be compiled as a module and it will be called
2005-05-13 06:48:20 +04:00
"ieee80211_crypt_ccmp".
config IEEE80211_CRYPT_TKIP
tristate "IEEE 802.11i TKIP encryption"
2007-04-23 23:19:12 +04:00
depends on IEEE80211
select WIRELESS_EXT
2005-05-07 02:54:49 +04:00
select CRYPTO
2005-05-13 06:48:20 +04:00
select CRYPTO_MICHAEL_MIC
2006-10-25 10:49:36 +04:00
select CRYPTO_ECB
2006-07-15 02:51:41 +04:00
select CRC32
2005-05-13 06:48:20 +04:00
---help---
2005-07-31 21:05:43 +04:00
Include software based cipher suites in support of IEEE 802.11i
(aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with TKIP enabled
2005-05-13 06:48:20 +04:00
networks.
2007-03-25 01:56:58 +03:00
This can be compiled as a module and it will be called
2005-05-13 06:48:20 +04:00
"ieee80211_crypt_tkip".
2006-01-04 18:32:16 +03:00
source "net/ieee80211/softmac/Kconfig"