1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 15:57:53 +03:00
openwrt-xburst/package/admswconfig/files/admswswitch.sh
thepeople b5c0892412 fix broken init file and some cleanup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10613 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-03-18 03:16:32 +00:00

27 lines
416 B
Bash

#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
setup_switch_vlan() {
config_get ports "$CONFIG_SECTION" "eth$1"
ports=`echo "$ports"| sed s/" "/""/g`
admswconfig eth$1 ${ports}c
}
setup_switch() {
config_cb() {
case "$1" in
switch)
option_cb() {
case "$1" in
eth*) setup_switch_vlan "${1##eth}";;
esac
}
;;
*)
option_cb() { return 0; }
;;
esac
}
config_load network
}