From 9a0a2cab803e126dc21a50557d7f4dedeb412b24 Mon Sep 17 00:00:00 2001 From: mbm Date: Sun, 27 Aug 2006 11:22:56 +0000 Subject: change hotplug trigger to a simpler awk command git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4685 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/default/etc/init.d/S10boot | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'package/base-files/default/etc') diff --git a/package/base-files/default/etc/init.d/S10boot b/package/base-files/default/etc/init.d/S10boot index 34f4cea93..b361e156f 100755 --- a/package/base-files/default/etc/init.d/S10boot +++ b/package/base-files/default/etc/init.d/S10boot @@ -17,7 +17,8 @@ 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 +# manually trigger hotplug before loading modules +for iface in $(awk -F: '/:/ {print $1}' /proc/net/dev); do /usr/bin/env -i ACTION=add INTERFACE="$iface" /sbin/hotplug net done -- cgit v1.2.3