diff options
Diffstat (limited to 'package/base-files/files/etc')
| -rwxr-xr-x | package/base-files/files/etc/init.d/boot | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/boot b/package/base-files/files/etc/init.d/boot index c0b61928c..b524c39c6 100755 --- a/package/base-files/files/etc/init.d/boot +++ b/package/base-files/files/etc/init.d/boot @@ -41,7 +41,8 @@ start() {  	ln -sf /tmp/resolv.conf.auto /tmp/resolv.conf  	[ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe -	/sbin/hotplug2 --override --persistent --max-children 1 --no-coldplug & +	[ -x /sbin/hotplug2 ] && /sbin/hotplug2 --override --persistent \ +			--max-children 1 --no-coldplug &  	# the coldplugging of network interfaces needs to happen later, so we do it manually here  	for iface in $(awk -F: '/:/ {print $1}' /proc/net/dev); do  | 
