mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
928e893a11
The removed patches were applied upstream. The type of the RT2X00_LIB_EEPROM config option was changed to bool, because boolean is an invalid value and the new kconfig system complained about this. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
32 lines
634 B
Diff
32 lines
634 B
Diff
--- a/net/wireless/Kconfig
|
|
+++ b/net/wireless/Kconfig
|
|
@@ -186,7 +186,7 @@ config CFG80211_WEXT_EXPORT
|
|
endif # CFG80211
|
|
|
|
config LIB80211
|
|
- tristate
|
|
+ tristate "lib80211"
|
|
depends on m
|
|
default n
|
|
help
|
|
@@ -196,16 +196,16 @@ config LIB80211
|
|
Drivers should select this themselves if needed.
|
|
|
|
config LIB80211_CRYPT_WEP
|
|
- tristate
|
|
+ tristate "lib80211 WEP support"
|
|
depends on m
|
|
select BPAUTO_CRYPTO_LIB_ARC4
|
|
|
|
config LIB80211_CRYPT_CCMP
|
|
- tristate
|
|
+ tristate "lib80211 CCMP support"
|
|
depends on m
|
|
|
|
config LIB80211_CRYPT_TKIP
|
|
- tristate
|
|
+ tristate "lib80211 TKIP support"
|
|
depends on m
|
|
select BPAUTO_CRYPTO_LIB_ARC4
|
|
|