diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-12-05 12:39:28 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-12-05 12:39:28 +0000 |
commit | d55e721178277e3d95e15733b8f4ee31a5411aee (patch) | |
tree | 3ee2f85bab4bf1580cc0830dfa25e9aefea42083 /target/linux | |
parent | 6c572038364e0eb5326def1c02892b8986a3dc3a (diff) | |
download | upstream-d55e721178277e3d95e15733b8f4ee31a5411aee.tar.gz upstream-d55e721178277e3d95e15733b8f4ee31a5411aee.tar.bz2 upstream-d55e721178277e3d95e15733b8f4ee31a5411aee.zip |
fix typo in switch config migration script
SVN-Revision: 18657
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/brcm-2.4/base-files/etc/init.d/netconfig | 8 |
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 b5d900a73b..638f664bef 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 } |