From ee56eec69c221e214bf9655a53545d8eb55af466 Mon Sep 17 00:00:00 2001 From: jow Date: Thu, 6 May 2010 19:50:22 +0000 Subject: [package] base-files: add a coldplug_interface_* hook to bring up non-hotpluggable interfaces on boot git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21389 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/files/etc/init.d/network | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'package') diff --git a/package/base-files/files/etc/init.d/network b/package/base-files/files/etc/init.d/network index 43d0a8423..d60d41a64 100755 --- 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() { -- cgit v1.2.3