From: John Crispin <[email protected]>

Now that netifd and hostapd allow dynamic reconfiguration, add a
command to trigger it.

Signed-off-by: Daniel Golle <[email protected]>
---
 package/base-files/files/sbin/wifi | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/package/base-files/files/sbin/wifi 
b/package/base-files/files/sbin/wifi
index f7a10de215..261d2fb500 100755
--- a/package/base-files/files/sbin/wifi
+++ b/package/base-files/files/sbin/wifi
@@ -130,6 +130,10 @@ wifi_updown() {
                scan_wifi
                cmd=up
        }
+       [ reconf = "$1" ] && {
+               scan_wifi
+               cmd=reconf
+       }
        ubus_wifi_cmd "$cmd" "$2"
        _wifi_updown "$@"
 }
@@ -241,6 +245,7 @@ case "$1" in
        reload) wifi_reload "$2";;
        reload_legacy) wifi_reload_legacy "$2";;
        --help|help) usage;;
+       reconf) ubus call network reload; wifi_updown "reconf" "$2";;
        ''|up) ubus call network reload; wifi_updown "enable" "$2";;
        *) usage; exit 1;;
 esac
-- 
2.23.0


_______________________________________________
openwrt-devel mailing list
[email protected]
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to