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

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

SVN-Revision: 45651
v19.07.3_mercusys_ac12_duma
Felix Fietkau 9 years ago
parent dbb99e937a
commit 29f8f90de4

@ -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

Loading…
Cancel
Save