blob: 91b16fbf91f0c88ace7137e2e5709b5dfac4a0ae [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
35 select CRC32
36 ---help---
Jeff Garzik2ff55fe2005-07-31 13:05:43 -040037 Include software based cipher suites in support of IEEE
Jeff Garzikb4538722005-05-12 22:48:20 -040038 802.11's WEP. This is needed for WEP as well as 802.1x.
39
40 This can be compiled as a modules and it will be called
41 "ieee80211_crypt_wep".
42
43config IEEE80211_CRYPT_CCMP
44 tristate "IEEE 802.11i CCMP support"
45 depends on IEEE80211
Adrian Bunk76fe1b02005-05-07 00:54:49 +020046 select CRYPTO
Jeff Garzikb4538722005-05-12 22:48:20 -040047 select CRYPTO_AES
48 ---help---
Jeff Garzik2ff55fe2005-07-31 13:05:43 -040049 Include software based cipher suites in support of IEEE 802.11i
50 (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with CCMP enabled
Jeff Garzikb4538722005-05-12 22:48:20 -040051 networks.
52
53 This can be compiled as a modules and it will be called
54 "ieee80211_crypt_ccmp".
55
56config IEEE80211_CRYPT_TKIP
57 tristate "IEEE 802.11i TKIP encryption"
58 depends on IEEE80211
Adrian Bunk76fe1b02005-05-07 00:54:49 +020059 select CRYPTO
Jeff Garzikb4538722005-05-12 22:48:20 -040060 select CRYPTO_MICHAEL_MIC
61 ---help---
Jeff Garzik2ff55fe2005-07-31 13:05:43 -040062 Include software based cipher suites in support of IEEE 802.11i
63 (aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with TKIP enabled
Jeff Garzikb4538722005-05-12 22:48:20 -040064 networks.
65
66 This can be compiled as a modules and it will be called
67 "ieee80211_crypt_tkip".
68