aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/default
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2006-08-27 11:22:56 +0000
committerMike Baker <mbm@openwrt.org>2006-08-27 11:22:56 +0000
commit596ac42047b67352e38b1a842bb766caefec940e (patch)
tree4e474957ac8a5e76ef382076ad75a0aa51302340 /package/base-files/default
parent3bf8e2a7e52ba1aa9fb9fa3e2d37319aa8e72ced (diff)
downloadupstream-596ac42047b67352e38b1a842bb766caefec940e.tar.gz
upstream-596ac42047b67352e38b1a842bb766caefec940e.tar.bz2
upstream-596ac42047b67352e38b1a842bb766caefec940e.zip
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
Diffstat (limited to 'package/base-files/default')
-rwxr-xr-xpackage/base-files/default/etc/init.d/S10boot3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/default/etc/init.d/S10boot b/package/base-files/default/etc/init.d/S10boot
index 34f4cea934..b361e156fe 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