summaryrefslogtreecommitdiffstats
path: root/package/netifd
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-05-23 21:26:20 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-05-23 21:26:20 +0000
commite771e71e9136366bfe409d156f320025153f4452 (patch)
tree8eb04b17d2b546438177bad7aef457ca9715f30e /package/netifd
parent530802ba69f170f1d7821d85d1cfbd5304dc5a3f (diff)
[package] netifd: port r27720 (#9763) to the netifd ifup variant
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31849 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/netifd')
-rwxr-xr-xpackage/netifd/files/sbin/ifup18
1 files changed, 18 insertions, 0 deletions
diff --git a/package/netifd/files/sbin/ifup b/package/netifd/files/sbin/ifup
index 90bbc9d15..a3ff10ec5 100755
--- a/package/netifd/files/sbin/ifup
+++ b/package/netifd/files/sbin/ifup
@@ -26,3 +26,21 @@ ubus -S list "network.interface.$1" > /dev/null || {
exit
}
if_call "network.interface.$1"
+
+grep -sq ^config /etc/config/wireless && {
+ local wdev
+ for wdev in $(
+ find_radio() {
+ local wdev wnet
+ config_get wdev "$1" device
+ config_get wnet "$1" network
+ [ -n "$wdev" ] && [ "$wnet" = "$2" ] && echo "$wdev"
+ }
+
+ source /lib/functions.sh
+ config_load wireless
+ config_foreach find_radio wifi-iface "$1" | sort -u
+ ); do
+ /sbin/wifi up "$wdev"
+ done
+}