projects
/
openwrt
/
staging
/
jow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ae5581
)
netifd: port r27720 (#9763) to the netifd ifup variant
author
Jo-Philipp Wich
<jow@openwrt.org>
Wed, 23 May 2012 21:26:20 +0000
(21:26 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Wed, 23 May 2012 21:26:20 +0000
(21:26 +0000)
SVN-Revision: 31849
package/netifd/files/sbin/ifup
patch
|
blob
|
history
diff --git
a/package/netifd/files/sbin/ifup
b/package/netifd/files/sbin/ifup
index 90bbc9d153bf379943e20194f47d37b576cacf70..a3ff10ec5ada24c3a44db83ef38526d6f1d4b489 100755
(executable)
--- 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
+}