projects
/
openwrt
/
staging
/
hauke.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b27b63b
)
base-files: wifi: tidy up the reconf code
author
Bob Cantor
<coxede6557@w3boats.com>
Thu, 24 Jun 2021 18:48:45 +0000
(
04:48
+1000)
committer
Felix Fietkau
<nbd@nbd.name>
Wed, 30 Jun 2021 17:24:55 +0000
(19:24 +0200)
commit
5edbd390d321532d9a697d6895a1a7c71c40bd5d
rearranged the
"wifi up" code.
This commit tidies up the "wifi reconf" code so as to
keep it aligned with the "wifi up" code.
branches affected: trunk, 21.02
Signed-off-by: Bob Cantor <coxede6557@w3boats.com>
(cherry-picked from commit
e8b54296092118fbef75de796d57799cc6c7b927
)
package/base-files/files/sbin/wifi
patch
|
blob
|
history
diff --git
a/package/base-files/files/sbin/wifi
b/package/base-files/files/sbin/wifi
index b2dde6f01cd4ae59e9fcca688bed0940934a42f7..6b9662fe93007b64fff5ddc8eaf42339ec459025 100755
(executable)
--- a/
package/base-files/files/sbin/wifi
+++ b/
package/base-files/files/sbin/wifi
@@
-135,6
+135,7
@@
wifi_updown() {
[ reconf = "$1" ] && {
scan_wifi
cmd=reconf
+ ubus call network reload
}
ubus_wifi_cmd "$cmd" "$2"
_wifi_updown "$@"
@@
-247,7
+248,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";;
+ reconf) wifi_updown "reconf" "$2";;
''|up) wifi_updown "enable" "$2";;
*) usage; exit 1;;
esac