Skip to content
Snippets Groups Projects
Commit d6b5ce48 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

base-files: add ucidef_set_interface_wan() and ucidef_add_switch_ports()


Add further helper functions to uci-defaults-new.sh for easier declarations
of complex switch layouts.

Signed-off-by: default avatarJo-Philipp Wich <jow@openwrt.org>

SVN-Revision: 47638
parent 11f20078
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,14 @@ ucidef_set_interface_lan() {
json_select ..
}
ucidef_set_interface_wan() {
local wan_if=$1
json_select_object network
_ucidef_set_interface wan $wan_if
json_select ..
}
ucidef_set_interfaces_lan_wan() {
local lan_if=$1
local wan_if=$2
......@@ -91,6 +99,48 @@ ucidef_add_switch_attr() {
json_select ..
}
ucidef_add_switch_ports() {
local name="$1"; shift
local port num role dev idx
json_select_object switch
json_select_object "$name"
json_select_array ports
for port in "$@"; do
case "$port" in
[0-9]*@*)
num="${port%%@*}"
dev="${port##*@}"
;;
[0-9]*:*:[0-9]*)
num="${port%%:*}"
idx="${port##*:}"
role="${port#[0-9]*:}"; role="${role%:*}"
;;
[0-9]*:*)
num="${port%%:*}"
role="${port##*:}"
;;
esac
if [ -n "$num" ] && [ -n "$dev$role" ]; then
json_add_object
json_add_int num "$num"
[ -n "$dev" ] && json_add_string device "$dev"
[ -n "$role" ] && json_add_string role "$role"
[ -n "$idx" ] && json_add_int index "$idx"
json_close_object
fi
unset num dev role idx
done
json_select ..
json_select ..
json_select ..
}
ucidef_add_switch_vlan() {
local name=$1
local vlan=$2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment