From 4ff504a9dde84ec56265f1410fc0aa185af32605 Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 4 Jan 2006 20:34:08 +0000 Subject: [PATCH] fix hotplug issue with compiled-in ethernet drivers git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2823 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/default/etc/init.d/S10boot | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/base-files/default/etc/init.d/S10boot b/package/base-files/default/etc/init.d/S10boot index 4c5e7a585..9dd0beb1c 100755 --- a/package/base-files/default/etc/init.d/S10boot +++ b/package/base-files/default/etc/init.d/S10boot @@ -22,6 +22,10 @@ touch /var/log/wtmp touch /var/log/lastlog [ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe +for iface in $(/sbin/ifconfig -a | awk '{print $1}' | grep eth); do + /usr/bin/env -i ACTION=add INTERFACE="$iface" /sbin/hotplug net +done + sed 's/^[^#]/insmod &/' /etc/modules /etc/modules.d/* 2>&-|ash ifconfig lo 127.0.0.1 up -- 2.35.1