diff options
author | Jiri Benc <jbenc@suse.cz> | 2007-05-05 14:45:53 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-05-05 14:45:53 -0400 |
commit | f0706e828e96d0fa4e80c0d25aa98523f6d589a0 (patch) | |
tree | a03c7f94939d74c1e1b82fcd9a215871590d8b35 /net/mac80211/Kconfig | |
parent | a9de8ce0943e03b425be18561f51159fcceb873d (diff) |
[MAC80211]: Add mac80211 wireless stack.
Add mac80211, the IEEE 802.11 software MAC layer.
Signed-off-by: Jiri Benc <jbenc@suse.cz>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/Kconfig')
-rw-r--r-- | net/mac80211/Kconfig | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/net/mac80211/Kconfig b/net/mac80211/Kconfig new file mode 100644 index 000000000000..d761b53fb84c --- /dev/null +++ b/net/mac80211/Kconfig | |||
@@ -0,0 +1,69 @@ | |||
1 | config 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 | |||
16 | config 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 | |||
23 | config MAC80211_DEBUG | ||
24 | bool "Enable debugging output" | ||
25 | depends on MAC80211 | ||
26 | ---help--- | ||
27 | This option will enable debug tracing output for the | ||
28 | ieee80211 network stack. | ||
29 | |||
30 | If you are not trying to debug or develop the ieee80211 | ||
31 | subsystem, you most likely want to say N here. | ||
32 | |||
33 | config MAC80211_VERBOSE_DEBUG | ||
34 | bool "Verbose debugging output" | ||
35 | depends on MAC80211_DEBUG | ||
36 | |||
37 | config MAC80211_LOWTX_FRAME_DUMP | ||
38 | bool "Debug frame dumping" | ||
39 | depends on MAC80211_DEBUG | ||
40 | ---help--- | ||
41 | Selecting this option will cause the stack to | ||
42 | print a message for each frame that is handed | ||
43 | to the lowlevel driver for transmission. This | ||
44 | message includes all MAC addresses and the | ||
45 | frame control field. | ||
46 | |||
47 | If unsure, say N and insert the debugging code | ||
48 | you require into the driver you are debugging. | ||
49 | |||
50 | config TKIP_DEBUG | ||
51 | bool "TKIP debugging" | ||
52 | depends on MAC80211_DEBUG | ||
53 | |||
54 | config MAC80211_DEBUG_COUNTERS | ||
55 | bool "Extra statistics for TX/RX debugging" | ||
56 | depends on MAC80211_DEBUG | ||
57 | |||
58 | config MAC80211_IBSS_DEBUG | ||
59 | bool "Support for IBSS testing" | ||
60 | depends on MAC80211_DEBUG | ||
61 | ---help--- | ||
62 | Say Y here if you intend to debug the IBSS code. | ||
63 | |||
64 | config MAC80211_VERBOSE_PS_DEBUG | ||
65 | bool "Verbose powersave mode debugging" | ||
66 | depends on MAC80211_DEBUG | ||
67 | ---help--- | ||
68 | Say Y here to print out verbose powersave | ||
69 | mode debug messages. | ||