diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-05-22 10:30:55 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-05-22 10:30:55 +0000 |
commit | fa4d5443630c4b245de04ec75f429e40a081ab91 (patch) | |
tree | 41e66c0adbb9dccb2983187616866edec8e53ad4 /package/broadcom-wl | |
parent | b71910dbb5fd368093abbead105de1581c408b13 (diff) | |
download | upstream-fa4d5443630c4b245de04ec75f429e40a081ab91.tar.gz upstream-fa4d5443630c4b245de04ec75f429e40a081ab91.tar.bz2 upstream-fa4d5443630c4b245de04ec75f429e40a081ab91.zip |
allow sta mode to work with psk+aes (#4687)
SVN-Revision: 15983
Diffstat (limited to 'package/broadcom-wl')
-rw-r--r-- | package/broadcom-wl/Makefile | 2 | ||||
-rw-r--r-- | package/broadcom-wl/files/lib/wifi/broadcom.sh | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package/broadcom-wl/Makefile b/package/broadcom-wl/Makefile index 5317e0d430..ce54374675 100644 --- a/package/broadcom-wl/Makefile +++ b/package/broadcom-wl/Makefile @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=broadcom-wl PKG_VERSION:=4.150.10.5.3 -PKG_RELEASE:=2 +PKG_RELEASE:=3 WLC_VERSION:=0.1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 diff --git a/package/broadcom-wl/files/lib/wifi/broadcom.sh b/package/broadcom-wl/files/lib/wifi/broadcom.sh index 998a2f58ff..9ce49ab6fb 100644 --- a/package/broadcom-wl/files/lib/wifi/broadcom.sh +++ b/package/broadcom-wl/files/lib/wifi/broadcom.sh @@ -199,6 +199,7 @@ enable_broadcom() { case "$enc" in wpa*+wpa2*|WPA*+WPA2*|*psk+*psk2|*PSK+*PSK2) auth=132; wsec=6;; wpa2*|WPA2*|*PSK2|*psk2) auth=128; wsec=4;; + *aes|*AES) auth=4; wsec=4;; *) auth=4; wsec=2;; esac eval "${vif}_key=\"\$key\"" |