mac80211: add start_disabled option
authorJohn Crispin <john@openwrt.org>
Thu, 9 Apr 2015 10:31:56 +0000 (10:31 +0000)
committerJohn Crispin <john@openwrt.org>
Thu, 9 Apr 2015 10:31:56 +0000 (10:31 +0000)
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45326

package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh

index 9526300379194e5e8347ef4e575e883124e8ede3..a7848bd8ad31584539df1ecc97b3c55befbef44e 100644 (file)
@@ -55,6 +55,7 @@ drv_mac80211_init_iface_config() {
        config_add_int maxassoc
        config_add_int max_listen_int
        config_add_int dtim_period
+       config_add_int start_disabled
 
        # mesh
        config_add_string mesh_id
@@ -314,12 +315,12 @@ mac80211_hostapd_setup_bss() {
        append hostapd_cfg "$type=$ifname" "$N"
 
        hostapd_set_bss_options hostapd_cfg "$vif" || return 1
-       json_get_vars wds dtim_period max_listen_int
+       json_get_vars wds dtim_period max_listen_int start_disabled
 
        set_default wds 0
 
        [ "$wds" -gt 0 ] && append hostapd_cfg "wds_sta=1" "$N"
-       [ "$staidx" -gt 0 ] && append hostapd_cfg "start_disabled=1" "$N"
+       [ "$staidx" -gt 0 -o "$start_disabled" -eq 1 ] && append hostapd_cfg "start_disabled=1" "$N"
 
        cat >> /var/run/hostapd-$phy.conf <<EOF
 $hostapd_cfg