From: Jo-Philipp Wich Date: Thu, 6 May 2010 19:50:22 +0000 (+0000) Subject: base-files: add a coldplug_interface_* hook to bring up non-hotpluggable interfaces... X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6a3cbba92e609da8d161c63b8dd38745ec9a44d7;p=librecmc%2Flibrecmc.git base-files: add a coldplug_interface_* hook to bring up non-hotpluggable interfaces on boot SVN-Revision: 21389 --- diff --git a/package/base-files/files/etc/init.d/network b/package/base-files/files/etc/init.d/network index 43d0a84232..d60d41a64e 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() {