aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2006-01-11 16:13:25 +0000
committerFlorian Fainelli <florian@openwrt.org>2006-01-11 16:13:25 +0000
commita0f7416c539ce302eb9f6bd61bbe02604c715a4d (patch)
treebe2b836f6daefd7e7bf717666906a27d4c2e35ec /package/base-files
parentce4cde8a938e1aca30e6640f8b244bddce1db5cf (diff)
downloadmaster-187ad058-a0f7416c539ce302eb9f6bd61bbe02604c715a4d.tar.gz
master-187ad058-a0f7416c539ce302eb9f6bd61bbe02604c715a4d.tar.bz2
master-187ad058-a0f7416c539ce302eb9f6bd61bbe02604c715a4d.zip
Fixed network autoconfiguration as explained in #200, fixes #200
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2912 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rw-r--r--package/base-files/default/etc/hotplug.d/net/10-net3
1 files changed, 3 insertions, 0 deletions
diff --git a/package/base-files/default/etc/hotplug.d/net/10-net b/package/base-files/default/etc/hotplug.d/net/10-net
index 187b937c60..b63eba090b 100644
--- a/package/base-files/default/etc/hotplug.d/net/10-net
+++ b/package/base-files/default/etc/hotplug.d/net/10-net
@@ -1,6 +1,9 @@
#!/bin/sh
setup_eth()
{
+ for part in $(nvram get unused_ifnames); do
+ [ "$part" = "$INTERFACE" ] && return 0
+ done
[ -f /proc/net/wl0 ] && {
lsmod | grep wlcompat >&- || insmod wlcompat
}