summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-12-05 12:39:28 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-12-05 12:39:28 +0000
commit8ea05ffd2b12394f22ffba544e8e9c81891e3bef (patch)
treef01cc5feb0e7bd31132c48c5c997c5bb41f12610 /target
parenta1ca4142c765bb354a68b9aa67298a4c6130dcd6 (diff)
[brcm-2.4] fix typo in switch config migration script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18657 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rwxr-xr-xtarget/linux/brcm-2.4/base-files/etc/init.d/netconfig8
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/brcm-2.4/base-files/etc/init.d/netconfig b/target/linux/brcm-2.4/base-files/etc/init.d/netconfig
index b5d900a73..638f664be 100755
--- a/target/linux/brcm-2.4/base-files/etc/init.d/netconfig
+++ b/target/linux/brcm-2.4/base-files/etc/init.d/netconfig
@@ -15,10 +15,10 @@ start() {
vlan[0-9]|vlan1[0-5])
local id="${1#vlan}"
append batch "delete network.eth0.${1}${N}"
- append batch "set network.eth0_${n}=switch_vlan${N}"
- append batch "set network.eth0_${n}.device=eth0${N}"
- append batch "set network.eth0_${n}.vlan=${id}${N}"
- append batch "set network.eth0_${n}.ports='${2}'${N}"
+ append batch "set network.eth0_${id}=switch_vlan${N}"
+ append batch "set network.eth0_${id}.device=eth0${N}"
+ append batch "set network.eth0_${id}.vlan=${id}${N}"
+ append batch "set network.eth0_${id}.ports='${2}'${N}"
;;
esac
}