1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-21 18:28:59 +03:00
openwrt-xburst/package/admswconfig/files/admswswitch.sh

26 lines
377 B
Bash
Raw Normal View History

#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
setup_switch_vlan() {
config_get ports "$CONFIG_SECTION" "eth$1"
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
}