mac80211: apply mesh parameters after starting authsae/wpa_supplicant (#16697)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45651 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Felix Fietkau
2015-05-09 08:58:12 +00:00
parent 0b4fff15b9
commit d123ad1b88

View File

@@ -590,11 +590,6 @@ mac80211_setup_vif() {
case "$mode" in
mesh)
for var in $MP_CONFIG_INT $MP_CONFIG_BOOL $MP_CONFIG_STRING; do
json_get_var mp_val "$var"
[ -n "$mp_val" ] && iw dev "$ifname" set mesh_param "$var" "$mp_val"
done
# authsae or wpa_supplicant
json_get_vars key
if [ -n "$key" ]; then
@@ -606,6 +601,11 @@ mac80211_setup_vif() {
mac80211_setup_supplicant || failed=1
fi
fi
for var in $MP_CONFIG_INT $MP_CONFIG_BOOL $MP_CONFIG_STRING; do
json_get_var mp_val "$var"
[ -n "$mp_val" ] && iw dev "$ifname" set mesh_param "$var" "$mp_val"
done
;;
adhoc)
wireless_vif_parse_encryption