mirror of https://github.com/hak5/openwrt-owl.git
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: 38989owl
parent
498d84fc4e
commit
3c50feca19
|
@ -133,12 +133,17 @@ wifi_updown() {
|
||||||
_wifi_updown "$@"
|
_wifi_updown "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
wifi_reload() {
|
wifi_reload_legacy() {
|
||||||
_wifi_updown "disable" "$1"
|
_wifi_updown "disable" "$1"
|
||||||
scan_wifi
|
scan_wifi
|
||||||
_wifi_updown "enable" "$1"
|
_wifi_updown "enable" "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wifi_reload() {
|
||||||
|
ubus call network reload
|
||||||
|
wifi_reload_legacy
|
||||||
|
}
|
||||||
|
|
||||||
wifi_detect() {
|
wifi_detect() {
|
||||||
for driver in ${2:-$DRIVERS}; do (
|
for driver in ${2:-$DRIVERS}; do (
|
||||||
if eval "type detect_$driver" 2>/dev/null >/dev/null; then
|
if eval "type detect_$driver" 2>/dev/null >/dev/null; then
|
||||||
|
@ -224,6 +229,7 @@ case "$1" in
|
||||||
detect) wifi_detect "$2";;
|
detect) wifi_detect "$2";;
|
||||||
status) ubus_wifi_cmd "status" "$2";;
|
status) ubus_wifi_cmd "status" "$2";;
|
||||||
reload) wifi_reload "$2";;
|
reload) wifi_reload "$2";;
|
||||||
|
reload_legacy) wifi_reload_legacy "$2";;
|
||||||
--help|help) usage;;
|
--help|help) usage;;
|
||||||
*) wifi_updown "enable" "$2";;
|
*) wifi_updown "enable" "$2";;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -18,7 +18,7 @@ start_service() {
|
||||||
|
|
||||||
reload_service() {
|
reload_service() {
|
||||||
ubus call network reload
|
ubus call network reload
|
||||||
/sbin/wifi reload
|
/sbin/wifi reload_legacy
|
||||||
}
|
}
|
||||||
|
|
||||||
stop_service() {
|
stop_service() {
|
||||||
|
|
Loading…
Reference in New Issue