X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=package%2Fadmswconfig%2Ffiles%2Fadmswswitch.sh;fp=package%2Fadmswconfig%2Ffiles%2Fadmswswitch.sh;h=c5898d5a392fd339a583fc39a3a9d702d6f30cc8;hb=42c72797dc387629e5755cbac7dba2c4604aef53;hp=0000000000000000000000000000000000000000;hpb=dabfb71139a2d9698e7f28b20b88d38239f971f0;p=openwrt.git diff --git a/package/admswconfig/files/admswswitch.sh b/package/admswconfig/files/admswswitch.sh new file mode 100644 index 0000000000..c5898d5a39 --- /dev/null +++ b/package/admswconfig/files/admswswitch.sh @@ -0,0 +1,25 @@ +#!/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 +}