blob: 1438adedbc83b04c26cbc6726804852f40c7b256 [file] [log] [blame]
Jeff Garzikb4538722005-05-12 22:48:20 -04001config IEEE80211
2 tristate "Generic IEEE 802.11 Networking Stack"
Jeff Garzikb4538722005-05-12 22:48:20 -04003 ---help---
Jeff Garzik2ff55fe2005-07-31 13:05:43 -04004 This option enables the hardware independent IEEE 802.11
Jeff Garzikb4538722005-05-12 22:48:20 -04005 networking stack.
6
7config IEEE80211_DEBUG
8 bool "Enable full debugging output"
9 depends on IEEE80211
10 ---help---
Jeff Garzik2ff55fe2005-07-31 13:05:43 -040011 This option will enable debug tracing output for the
12 ieee80211 network stack.
Jeff Garzikb4538722005-05-12 22:48:20 -040013
Jeff Garzik2ff55fe2005-07-31 13:05:43 -040014 This will result in the kernel module being ~70k larger. You
15 can control which debug output is sent to the kernel log by
16 setting the value in
Jeff Garzikb4538722005-05-12 22:48:20 -040017
18 /proc/net/ieee80211/debug_level
19
20 For example:
21
22 % echo 0x00000FFO > /proc/net/ieee80211/debug_level
23
Jeff Garzik2ff55fe2005-07-31 13:05:43 -040024 For a list of values you can assign to debug_level, you
Jeff Garzikb4538722005-05-12 22:48:20 -040025 can look at the bit mask values in <net/ieee80211.h>
26
Jeff Garzik2ff55fe2005-07-31 13:05:43 -040027 If you are not trying to debug or develop the ieee80211
Jeff Garzikb4538722005-05-12 22:48:20 -040028 subsystem, you most likely want to say N here.
29
30config IEEE80211_CRYPT_WEP
31 tristate "IEEE 802.11 WEP encryption (802.1x)"
32 depends on IEEE80211
33 select CRYPTO
34 select CRYPTO_ARC4
Patrick McHardybcbaecb2006-10-25 16:49:36 +100035 select CRYPTO_ECB
Jeff Garzikb4538722005-05-12 22:48:20 -040036 select CRC32
37 ---help---
Jeff Garzik2ff55fe2005-07-31 13:05:43 -040038 Include software based cipher suites in support of IEEE
Jeff Garzikb4538722005-05-12 22:48:20 -040039 802.11's WEP. This is needed for WEP as well as 802.1x.
40
Patrick Ringl0fa7d862007-03-24 23:56:58 +010041 This can be compiled as a module and it will be called
Jeff Garzikb4538722005-05-12 22:48:20 -040042 "ieee80211_crypt_wep".
43
44config IEEE80211_CRYPT_CCMP
45 tristate "IEEE 802.11i CCMP support"
46 depends on IEEE80211
Adrian Bunk76fe1b02005-05-07 00:54:49 +020047 select CRYPTO
Jeff Garzikb4538722005-05-12 22:48:20 -040048 select CRYPTO_AES
49 ---help---
Jeff Garzik2ff55fe2005-07-31 13:05:43 -040050 Include software based cipher suites in support of IEEE 802.11i
51 (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with CCMP enabled
Jeff Garzikb4538722005-05-12 22:48:20 -040052 networks.
53
Patrick Ringl0fa7d862007-03-24 23:56:58 +010054 This can be compiled as a module and it will be called
Jeff Garzikb4538722005-05-12 22:48:20 -040055 "ieee80211_crypt_ccmp".
56
57config IEEE80211_CRYPT_TKIP
58 tristate "IEEE 802.11i TKIP encryption"
Johannes Berg2a5e1c02007-04-23 12:19:12 -070059 depends on IEEE80211
60 select WIRELESS_EXT
Adrian Bunk76fe1b02005-05-07 00:54:49 +020061 select CRYPTO
Jeff Garzikb4538722005-05-12 22:48:20 -040062 select CRYPTO_MICHAEL_MIC
Patrick McHardybcbaecb2006-10-25 16:49:36 +100063 select CRYPTO_ECB
Chuck Ebbertca0084f2006-07-14 18:51:41 -040064 select CRC32
Jeff Garzikb4538722005-05-12 22:48:20 -040065 ---help---
Jeff Garzik2ff55fe2005-07-31 13:05:43 -040066 Include software based cipher suites in support of IEEE 802.11i
67 (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with TKIP enabled
Jeff Garzikb4538722005-05-12 22:48:20 -040068 networks.
69
Patrick Ringl0fa7d862007-03-24 23:56:58 +010070 This can be compiled as a module and it will be called
Jeff Garzikb4538722005-05-12 22:48:20 -040071 "ieee80211_crypt_tkip".
72
Johannes Berg370121e2006-01-04 16:32:16 +010073source "net/ieee80211/softmac/Kconfig"