projects
/
openwrt
/
staging
/
lynxis.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd7f329
)
base-files: add a coldplug_interface_* hook to bring up non-hotpluggable interfaces...
author
Jo-Philipp Wich
<jow@openwrt.org>
Thu, 6 May 2010 19:50:22 +0000
(19:50 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Thu, 6 May 2010 19:50:22 +0000
(19:50 +0000)
SVN-Revision: 21389
package/base-files/files/etc/init.d/network
patch
|
blob
|
history
diff --git
a/package/base-files/files/etc/init.d/network
b/package/base-files/files/etc/init.d/network
index 43d0a842322b51e8eed9b3676d4d4da6b1702d44..d60d41a64e07726011ff529b2bb71a9294465534 100755
(executable)
--- a/
package/base-files/files/etc/init.d/network
+++ b/
package/base-files/files/etc/init.d/network
@@
-15,6
+15,17
@@
boot() {
rm -f /etc/config/wireless
/sbin/wifi detect > /etc/config/wireless
}
+
+ scan_interfaces
+
+ local ifc
+ for ifc in $interfaces; do
+ local proto
+ config_get proto "$ifc" proto
+
+ type "coldplug_interface_$proto" >/dev/null && \
+ coldplug_interface_$proto "$ifc"
+ done
}
start() {