diff options
author | John W. Linville <linville@tuxdriver.com> | 2008-11-11 16:45:38 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-21 11:08:18 -0500 |
commit | beb2a7f331361bfe81e71acdb0739eae570475a2 (patch) | |
tree | de7ee004296ae3bd5aeb85c19c82d419074f4f29 /drivers/net/wireless/ipw2x00/Kconfig | |
parent | 0795cd29b6fe05107b40080cb1fccadb96320c96 (diff) |
net/ieee80211 -> drivers/net/ipw2x00/libipw_* rename
The old ieee80211 code only remains as a support library for the ipw2100
and ipw2200 drivers. So, move the code and rename it appropriately to
reflects it's true purpose and status.
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ipw2x00/Kconfig')
-rw-r--r-- | drivers/net/wireless/ipw2x00/Kconfig | 45 |
1 files changed, 43 insertions, 2 deletions
diff --git a/drivers/net/wireless/ipw2x00/Kconfig b/drivers/net/wireless/ipw2x00/Kconfig index 67c57bfa5c1a..3d5cc4463d4d 100644 --- a/drivers/net/wireless/ipw2x00/Kconfig +++ b/drivers/net/wireless/ipw2x00/Kconfig | |||
@@ -8,7 +8,7 @@ config IPW2100 | |||
8 | select WIRELESS_EXT | 8 | select WIRELESS_EXT |
9 | select FW_LOADER | 9 | select FW_LOADER |
10 | select LIB80211 | 10 | select LIB80211 |
11 | select IEEE80211 | 11 | select LIBIPW |
12 | ---help--- | 12 | ---help--- |
13 | A driver for the Intel PRO/Wireless 2100 Network | 13 | A driver for the Intel PRO/Wireless 2100 Network |
14 | Connection 802.11b wireless network adapter. | 14 | Connection 802.11b wireless network adapter. |
@@ -67,7 +67,7 @@ config IPW2200 | |||
67 | select WIRELESS_EXT | 67 | select WIRELESS_EXT |
68 | select FW_LOADER | 68 | select FW_LOADER |
69 | select LIB80211 | 69 | select LIB80211 |
70 | select IEEE80211 | 70 | select LIBIPW |
71 | ---help--- | 71 | ---help--- |
72 | A driver for the Intel PRO/Wireless 2200BG and 2915ABG Network | 72 | A driver for the Intel PRO/Wireless 2200BG and 2915ABG Network |
73 | Connection adapters. | 73 | Connection adapters. |
@@ -148,3 +148,44 @@ config IPW2200_DEBUG | |||
148 | 148 | ||
149 | If you are not sure, say N here. | 149 | If you are not sure, say N here. |
150 | 150 | ||
151 | config LIBIPW | ||
152 | tristate | ||
153 | select WIRELESS_EXT | ||
154 | select CRYPTO | ||
155 | select CRYPTO_ARC4 | ||
156 | select CRYPTO_ECB | ||
157 | select CRYPTO_AES | ||
158 | select CRYPTO_MICHAEL_MIC | ||
159 | select CRYPTO_ECB | ||
160 | select CRC32 | ||
161 | select LIB80211 | ||
162 | select LIB80211_CRYPT_WEP | ||
163 | select LIB80211_CRYPT_TKIP | ||
164 | select LIB80211_CRYPT_CCMP | ||
165 | ---help--- | ||
166 | This option enables the hardware independent IEEE 802.11 | ||
167 | networking stack. This component is deprecated in favor of the | ||
168 | mac80211 component. | ||
169 | |||
170 | config LIBIPW_DEBUG | ||
171 | bool "Full debugging output for the LIBIPW component" | ||
172 | depends on LIBIPW | ||
173 | ---help--- | ||
174 | This option will enable debug tracing output for the | ||
175 | libipw component. | ||
176 | |||
177 | This will result in the kernel module being ~70k larger. You | ||
178 | can control which debug output is sent to the kernel log by | ||
179 | setting the value in | ||
180 | |||
181 | /proc/net/ieee80211/debug_level | ||
182 | |||
183 | For example: | ||
184 | |||
185 | % echo 0x00000FFO > /proc/net/ieee80211/debug_level | ||
186 | |||
187 | For a list of values you can assign to debug_level, you | ||
188 | can look at the bit mask values in <net/ieee80211.h> | ||
189 | |||
190 | If you are not trying to debug or develop the libipw | ||
191 | component, you most likely want to say N here. | ||