Explorar o código

mac80211: fix encryption fallback for sta mode, add frequency/bssid selection support

SVN-Revision: 18025
Felix Fietkau %!s(int64=16) %!d(string=hai) anos
pai
achega
d5ca84ad0f
Modificáronse 1 ficheiros con 5 adicións e 4 borrados
  1. 5 4
      package/mac80211/files/lib/wifi/mac80211.sh

+ 5 - 4
package/mac80211/files/lib/wifi/mac80211.sh

@@ -231,14 +231,12 @@ enable_mac80211() {
 				iw dev "$ifname" ibss join "$ssid" $freq ${fixed:+fixed-freq} $bssid
 			;;
 			sta|mesh)
+				config_get bssid "$vif" bssid
 				case "$enc" in												 
-					*)
-						iw dev "$ifname" connect "$ssid"
-					;;
 					wep)
 						if [ -e "$keymgmt" ]; then
 							[ -n "$keystring" ] &&
-								iw dev "$ifname" connect "$ssid" key "$keystring"
+								iw dev "$ifname" connect "$ssid" ${fixed:+$freq} $bssid key "$keystring"
 						else
 							if eval "type wpa_supplicant_setup_vif" 2>/dev/null >/dev/null; then
 								wpa_supplicant_setup_vif "$vif" wext || {
@@ -260,6 +258,9 @@ enable_mac80211() {
 							}
 						fi
 					;;
+					*)
+						iw dev "$ifname" connect "$ssid" ${fixed:+$freq} $bssid
+					;;
 				esac
 
 			;;