diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-12-02 16:53:24 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-12-02 16:53:24 +0000 |
commit | 3c50feca19208cccc7fd4a4c20deaa931267662d (patch) | |
tree | cb91aada1cae200a4abc02ce12a7373a888720eb /package/base-files/files | |
parent | 498d84fc4e00ad75514c3a9dde09338552b89a8c (diff) | |
download | mtk-20170518-3c50feca19208cccc7fd4a4c20deaa931267662d.zip mtk-20170518-3c50feca19208cccc7fd4a4c20deaa931267662d.tar.gz mtk-20170518-3c50feca19208cccc7fd4a4c20deaa931267662d.tar.bz2 |
wifi: rename the "reload" (restarting non-netifd wifi) command to "reload_legacy"
Add a new "reload" command that reloads the netifd config as well
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 38989
Diffstat (limited to 'package/base-files/files')
-rwxr-xr-x | package/base-files/files/sbin/wifi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/base-files/files/sbin/wifi b/package/base-files/files/sbin/wifi index 7663432..2687f1e 100755 --- a/package/base-files/files/sbin/wifi +++ b/package/base-files/files/sbin/wifi @@ -133,12 +133,17 @@ wifi_updown() { _wifi_updown "$@" } -wifi_reload() { +wifi_reload_legacy() { _wifi_updown "disable" "$1" scan_wifi _wifi_updown "enable" "$1" } +wifi_reload() { + ubus call network reload + wifi_reload_legacy +} + wifi_detect() { for driver in ${2:-$DRIVERS}; do ( if eval "type detect_$driver" 2>/dev/null >/dev/null; then @@ -224,6 +229,7 @@ case "$1" in detect) wifi_detect "$2";; status) ubus_wifi_cmd "status" "$2";; reload) wifi_reload "$2";; + reload_legacy) wifi_reload_legacy "$2";; --help|help) usage;; *) wifi_updown "enable" "$2";; esac |