1config MAC80211
2	tristate "Generic IEEE 802.11 Networking Stack (mac80211)"
3	depends on EXPERIMENTAL
4	select CRYPTO
5	select CRYPTO_ECB
6	select CRYPTO_ARC4
7	select CRYPTO_AES
8	select CRC32
9	select WIRELESS_EXT
10	select CFG80211
11	select NET_SCH_FIFO
12	---help---
13	This option enables the hardware independent IEEE 802.11
14	networking stack.
15
16config MAC80211_LEDS
17	bool "Enable LED triggers"
18	depends on MAC80211 && LEDS_TRIGGERS
19	---help---
20	This option enables a few LED triggers for different
21	packet receive/transmit events.
22
23config MAC80211_DEBUGFS
24	bool "Export mac80211 internals in DebugFS"
25	depends on MAC80211 && DEBUG_FS
26	---help---
27	  Select this to see extensive information about
28	  the internal state of mac80211 in debugfs.
29
30	  Say N unless you know you need this.
31
32config MAC80211_DEBUG
33	bool "Enable debugging output"
34	depends on MAC80211
35	---help---
36	  This option will enable debug tracing output for the
37	  ieee80211 network stack.
38
39	  If you are not trying to debug or develop the ieee80211
40	  subsystem, you most likely want to say N here.
41
42config MAC80211_VERBOSE_DEBUG
43	bool "Verbose debugging output"
44	depends on MAC80211_DEBUG
45
46config MAC80211_LOWTX_FRAME_DUMP
47	bool "Debug frame dumping"
48	depends on MAC80211_DEBUG
49	---help---
50	  Selecting this option will cause the stack to
51	  print a message for each frame that is handed
52	  to the lowlevel driver for transmission. This
53	  message includes all MAC addresses and the
54	  frame control field.
55
56	  If unsure, say N and insert the debugging code
57	  you require into the driver you are debugging.
58
59config TKIP_DEBUG
60	bool "TKIP debugging"
61	depends on MAC80211_DEBUG
62
63config MAC80211_DEBUG_COUNTERS
64	bool "Extra statistics for TX/RX debugging"
65	depends on MAC80211_DEBUG
66
67config MAC80211_IBSS_DEBUG
68	bool "Support for IBSS testing"
69	depends on MAC80211_DEBUG
70	---help---
71	  Say Y here if you intend to debug the IBSS code.
72
73config MAC80211_VERBOSE_PS_DEBUG
74	bool "Verbose powersave mode debugging"
75	depends on MAC80211_DEBUG
76	---help---
77	  Say Y here to print out verbose powersave
78	  mode debug messages.
79