brcm80211: smac: don't set up tx power limits during initialization
[linux-2.6.git] / net / wireless / Kconfig
blob4d2b1ec6516ff7f2e96c3ecee6bca4062c1d3a80
1 config WIRELESS_EXT
2         bool
4 config WEXT_CORE
5         def_bool y
6         depends on CFG80211_WEXT || WIRELESS_EXT
8 config WEXT_PROC
9         def_bool y
10         depends on PROC_FS
11         depends on WEXT_CORE
13 config WEXT_SPY
14         bool
16 config WEXT_PRIV
17         bool
19 config CFG80211
20         tristate "cfg80211 - wireless configuration API"
21         depends on RFKILL || !RFKILL
22         ---help---
23           cfg80211 is the Linux wireless LAN (802.11) configuration API.
24           Enable this if you have a wireless device.
26           For more information refer to documentation on the wireless wiki:
28           http://wireless.kernel.org/en/developers/Documentation/cfg80211
30           When built as a module it will be called cfg80211.
32 config NL80211_TESTMODE
33         bool "nl80211 testmode command"
34         depends on CFG80211
35         help
36           The nl80211 testmode command helps implementing things like
37           factory calibration or validation tools for wireless chips.
39           Select this option ONLY for kernels that are specifically
40           built for such purposes.
42           Debugging tools that are supposed to end up in the hands of
43           users should better be implemented with debugfs.
45           Say N.
47 config CFG80211_DEVELOPER_WARNINGS
48         bool "enable developer warnings"
49         depends on CFG80211
50         default n
51         help
52           This option enables some additional warnings that help
53           cfg80211 developers and driver developers, but that can
54           trigger due to races with userspace.
56           For example, when a driver reports that it was disconnected
57           from the AP, but the user disconnects manually at the same
58           time, the warning might trigger spuriously due to races.
60           Say Y only if you are developing cfg80211 or a driver based
61           on it (or mac80211).
64 config CFG80211_REG_DEBUG
65         bool "cfg80211 regulatory debugging"
66         depends on CFG80211
67         default n
68         ---help---
69           You can enable this if you want to debug regulatory changes.
70           For more information on cfg80211 regulatory refer to the wireless
71           wiki:
73           http://wireless.kernel.org/en/developers/Regulatory
75           If unsure, say N.
77 config CFG80211_DEFAULT_PS
78         bool "enable powersave by default"
79         depends on CFG80211
80         default y
81         help
82           This option enables powersave mode by default.
84           If this causes your applications to misbehave you should fix your
85           applications instead -- they need to register their network
86           latency requirement, see Documentation/power/pm_qos_interface.txt.
88 config CFG80211_DEBUGFS
89         bool "cfg80211 DebugFS entries"
90         depends on CFG80211
91         depends on DEBUG_FS
92         ---help---
93           You can enable this if you want to debugfs entries for cfg80211.
95           If unsure, say N.
97 config CFG80211_INTERNAL_REGDB
98         bool "use statically compiled regulatory rules database" if EXPERT
99         default n
100         depends on CFG80211
101         ---help---
102           This option generates an internal data structure representing
103           the wireless regulatory rules described in net/wireless/db.txt
104           and includes code to query that database.  This is an alternative
105           to using CRDA for defining regulatory rules for the kernel.
107           For details see:
109           http://wireless.kernel.org/en/developers/Regulatory
111           Most distributions have a CRDA package.  So if unsure, say N.
113 config CFG80211_WEXT
114         bool "cfg80211 wireless extensions compatibility"
115         depends on CFG80211
116         select WEXT_CORE
117         help
118           Enable this option if you need old userspace for wireless
119           extensions with cfg80211-based drivers.
121 config LIB80211
122         tristate "Common routines for IEEE802.11 drivers"
123         default n
124         help
125           This options enables a library of common routines used
126           by IEEE802.11 wireless LAN drivers.
128           Drivers should select this themselves if needed.  Say Y if
129           you want this built into your kernel.
131 config LIB80211_CRYPT_WEP
132         tristate
134 config LIB80211_CRYPT_CCMP
135         tristate
137 config LIB80211_CRYPT_TKIP
138         tristate
140 config LIB80211_DEBUG
141         bool "lib80211 debugging messages"
142         depends on LIB80211
143         default n
144         ---help---
145           You can enable this if you want verbose debugging messages
146           from lib80211.
148           If unsure, say N.