diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-04 20:34:08 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-04 20:34:08 +0000 |
commit | da977bbb284999fe2619ff8c8e3b57d1459ca154 (patch) | |
tree | f622ffd6b081ebfbde3eefeccd8c1fbb475332e8 /openwrt/package/base-files | |
parent | ad37d55186f7e517c58f47b5d464b813ba8746f0 (diff) |
fix hotplug issue with compiled-in ethernet drivers
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2823 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files')
-rwxr-xr-x | openwrt/package/base-files/default/etc/init.d/S10boot | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openwrt/package/base-files/default/etc/init.d/S10boot b/openwrt/package/base-files/default/etc/init.d/S10boot index 4c5e7a5852..9dd0beb1c7 100755 --- a/openwrt/package/base-files/default/etc/init.d/S10boot +++ b/openwrt/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 |