summaryrefslogtreecommitdiff
path: root/openwrt/package/base-files/default
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-08-24 12:20:02 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-08-24 12:20:02 +0000
commita0a9319149d10ac7ee4525b41992d9afc2900874 (patch)
tree26316a71b225658ba063d2d3122ee31ba7e6ac65 /openwrt/package/base-files/default
parent12fed89aa2cbc4de433d86271dfcb43687514fed (diff)
downloadmtk-20170518-a0a9319149d10ac7ee4525b41992d9afc2900874.zip
mtk-20170518-a0a9319149d10ac7ee4525b41992d9afc2900874.tar.gz
mtk-20170518-a0a9319149d10ac7ee4525b41992d9afc2900874.tar.bz2
fix remaining *_ifnames references
SVN-Revision: 4650
Diffstat (limited to 'openwrt/package/base-files/default')
-rw-r--r--openwrt/package/base-files/default/etc/hotplug.d/net/10-net7
-rwxr-xr-xopenwrt/package/base-files/default/sbin/ifup9
2 files changed, 3 insertions, 13 deletions
diff --git a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
index 72146a1..8661a28 100644
--- a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
+++ b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
@@ -5,14 +5,11 @@ include network
addif() {
scan_interfaces
setup_interface "$INTERFACE"
-
+
# find all vlan configurations for this interface and set them up as well
for ifc in $interfaces; do
config_get iftype "$ifc" type
- case "$iftype" in
- bridge) config_get ifs "$ifc" ifnames;;
- *) config_get ifs "$ifc" ifname;;
- esac
+ config_get ifs "$ifc" ifname
for dev in $ifs; do
[ "${dev%%\.*}" = "$INTERFACE" -a "$dev" != "$INTERFACE" ] && {
add_vlan "$dev"
diff --git a/openwrt/package/base-files/default/sbin/ifup b/openwrt/package/base-files/default/sbin/ifup
index c40de38..86d10d7 100755
--- a/openwrt/package/base-files/default/sbin/ifup
+++ b/openwrt/package/base-files/default/sbin/ifup
@@ -4,14 +4,7 @@
. /sbin/ifdown "$@"
config_get iftype "$1" type
-case "$iftype" in
- bridge)
- config_get ifname "$1" ifnames
- ;;
- *)
- config_get ifname "$1" ifname
- ;;
-esac
+config_get ifname "$1" ifname
for dev in $ifname; do
setup_interface "$dev" "$1"