Kconfig 2.0 KB
Newer Older
J
Jeff Garzik 已提交
1
config IEEE80211
2
	tristate "Generic IEEE 802.11 Networking Stack (DEPRECATED)"
J
Jeff Garzik 已提交
3
	---help---
4
	This option enables the hardware independent IEEE 802.11
5 6
	networking stack.  This component is deprecated in favor of the
	mac80211 component.
J
Jeff Garzik 已提交
7 8 9 10 11

config IEEE80211_DEBUG
	bool "Enable full debugging output"
	depends on IEEE80211
	---help---
12 13
	  This option will enable debug tracing output for the
	  ieee80211 network stack.
J
Jeff Garzik 已提交
14

15 16 17
	  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
J
Jeff Garzik 已提交
18 19 20 21 22 23 24

	  /proc/net/ieee80211/debug_level

	  For example:

	  % echo 0x00000FFO > /proc/net/ieee80211/debug_level

25
	  For a list of values you can assign to debug_level, you
J
Jeff Garzik 已提交
26 27
	  can look at the bit mask values in <net/ieee80211.h>

28
	  If you are not trying to debug or develop the ieee80211
J
Jeff Garzik 已提交
29 30 31 32 33 34 35
	  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
36
	select CRYPTO_ECB
J
Jeff Garzik 已提交
37 38
	select CRC32
	---help---
39
	Include software based cipher suites in support of IEEE
J
Jeff Garzik 已提交
40 41
	802.11's WEP.  This is needed for WEP as well as 802.1x.

42
	This can be compiled as a module and it will be called
J
Jeff Garzik 已提交
43 44 45 46 47
	"ieee80211_crypt_wep".

config IEEE80211_CRYPT_CCMP
	tristate "IEEE 802.11i CCMP support"
	depends on IEEE80211
48
	select CRYPTO
J
Jeff Garzik 已提交
49 50
	select CRYPTO_AES
	---help---
51 52
	Include software based cipher suites in support of IEEE 802.11i
	(aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with CCMP enabled
J
Jeff Garzik 已提交
53 54
	networks.

55
	This can be compiled as a module and it will be called
J
Jeff Garzik 已提交
56 57 58 59
	"ieee80211_crypt_ccmp".

config IEEE80211_CRYPT_TKIP
	tristate "IEEE 802.11i TKIP encryption"
60 61
	depends on IEEE80211
	select WIRELESS_EXT
62
	select CRYPTO
J
Jeff Garzik 已提交
63
	select CRYPTO_MICHAEL_MIC
64
	select CRYPTO_ECB
65
	select CRC32
J
Jeff Garzik 已提交
66
	---help---
67 68
	Include software based cipher suites in support of IEEE 802.11i
	(aka TGi, WPA, WPA2, WPA-PSK, etc.) for use with TKIP enabled
J
Jeff Garzik 已提交
69 70
	networks.

71
	This can be compiled as a module and it will be called
J
Jeff Garzik 已提交
72 73
	"ieee80211_crypt_tkip".