switch: eliminate the asterisk from the switch port configuration and set it automatically on the first vlan, this aligns the broadcom vlan config with the swconfig format

SVN-Revision: 19909
This commit is contained in:
Jo-Philipp Wich
2010-02-28 16:40:06 +00:00
parent a15d58f605
commit 96e4312e7e
2 changed files with 11 additions and 2 deletions

View File

@@ -14,11 +14,12 @@ start() {
case "$1" in
vlan[0-9]|vlan1[0-5])
local id="${1#vlan}"
local ports="${2%\*}"
append batch "delete network.eth0.${1}${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}"
append batch "set network.eth0_${id}.ports='${ports}'${N}"
;;
esac
}