all: drop old uci-defaults.sh

Replace former uci-defaults.sh implementation with the uci-defaults-new.sh one
and update all users accordingly.

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

SVN-Revision: 47867
v19.07.3_mercusys_ac12_duma
Jo-Philipp Wich 9 years ago
parent b0b8293b7e
commit 67e1c87012

@ -1,576 +0,0 @@
#!/bin/ash
CFG=/etc/board.json
. /lib/functions.sh
. /usr/share/libubox/jshn.sh
json_select_array() {
local _json_no_warning=1
json_select "$1"
[ $? = 0 ] && return
json_add_array "$1"
json_close_array
json_select "$1"
}
json_select_object() {
local _json_no_warning=1
json_select "$1"
[ $? = 0 ] && return
json_add_object "$1"
json_close_object
json_select "$1"
}
_ucidef_set_interface() {
local name="$1"
local iface="$2"
local proto="$3"
json_select_object "$name"
json_add_string ifname "$iface"
if ! json_is_a protocol string; then
case "$proto" in
static|dhcp|none|pppoe) : ;;
*)
case "$name" in
lan) proto="static" ;;
wan) proto="dhcp" ;;
*) proto="none" ;;
esac
;;
esac
json_add_string protocol "$proto"
fi
json_select ..
}
ucidef_set_board_id() {
json_select_object model
json_add_string id "$1"
json_select ..
}
ucidef_set_model_name() {
json_select_object model
json_add_string name "$1"
json_select ..
}
ucidef_set_interface_lan() {
json_select_object network
_ucidef_set_interface lan "$@"
json_select ..
}
ucidef_set_interface_wan() {
json_select_object network
_ucidef_set_interface wan "$@"
json_select ..
}
ucidef_set_interfaces_lan_wan() {
local lan_if="$1"
local wan_if="$2"
json_select_object network
_ucidef_set_interface lan "$lan_if"
_ucidef_set_interface wan "$wan_if"
json_select ..
}
_ucidef_add_switch_port() {
# inherited: $num $device $need_tag $role $index $prev_role
# inherited: $n_cpu $n_ports $n_vlan $cpu0 $cpu1 $cpu2 $cpu3 $cpu4 $cpu5
n_ports=$((n_ports + 1))
json_select_array ports
json_add_object
json_add_int num "$num"
[ -n "$device" ] && json_add_string device "$device"
[ -n "$need_tag" ] && json_add_boolean need_tag "$need_tag"
[ -n "$role" ] && json_add_string role "$role"
[ -n "$index" ] && json_add_int index "$index"
json_close_object
json_select ..
# record pointer to cpu entry for lookup in _ucidef_finish_switch_roles()
[ -n "$device" ] && {
export "cpu$n_cpu=$n_ports"
n_cpu=$((n_cpu + 1))
}
# create/append object to role list
[ -n "$role" ] && {
json_select_array roles
if [ "$role" != "$prev_role" ]; then
json_add_object
json_add_string role "$role"
json_add_string ports "$num"
json_close_object
prev_role="$role"
n_vlan=$((n_vlan + 1))
else
json_select_object "$n_vlan"
json_get_var port ports
json_add_string ports "$port $num"
json_select ..
fi
json_select ..
}
}
_ucidef_finish_switch_roles() {
# inherited: $name $n_cpu $n_vlan $cpu0 $cpu1 $cpu2 $cpu3 $cpu4 $cpu5
local index role roles num device need_tag port ports
json_select switch
json_select "$name"
json_get_keys roles roles
json_select ..
json_select ..
for index in $roles; do
eval "port=\$cpu$(((index - 1) % n_cpu))"
json_select switch
json_select "$name"
json_select ports
json_select "$port"
json_get_vars num device need_tag
json_select ..
json_select ..
if [ $n_vlan -gt $n_cpu -o ${need_tag:-0} -eq 1 ]; then
num="${num}t"
device="${device}.${index}"
fi
json_select roles
json_select "$index"
json_get_vars role ports
json_add_string ports "$ports $num"
json_add_string device "$device"
json_select ..
json_select ..
json_select ..
json_select ..
json_select_object network
local devices
json_select_object "$role"
# attach previous interfaces (for multi-switch devices)
json_get_var devices ifname
if ! list_contains devices "$device"; then
devices="${devices:+$devices }$device"
fi
json_select ..
_ucidef_set_interface "$role" "$devices"
json_select ..
done
}
ucidef_add_switch() {
local name="$1"; shift
local port num role device index need_tag prev_role
local cpu0 cpu1 cpu2 cpu3 cpu4 cpu5
local n_cpu=0 n_vlan=0 n_ports=0
json_select_object switch
json_select_object "$name"
json_add_boolean enable 1
json_add_boolean reset 1
for port in "$@"; do
case "$port" in
[0-9]*@*)
num="${port%%@*}"
device="${port##*@}"
need_tag=0
[ "${num%t}" != "$num" ] && {
num="${num%t}"
need_tag=1
}
;;
[0-9]*:*:[0-9]*)
num="${port%%:*}"
index="${port##*:}"
role="${port#[0-9]*:}"; role="${role%:*}"
;;
[0-9]*:*)
num="${port%%:*}"
role="${port##*:}"
;;
esac
if [ -n "$num" ] && [ -n "$device$role" ]; then
_ucidef_add_switch_port
fi
unset num device role index need_tag
done
json_select ..
json_select ..
_ucidef_finish_switch_roles
}
ucidef_add_switch_attr() {
local name="$1"
local key="$2"
local val="$3"
json_select_object switch
json_select_object "$name"
case "$val" in
true|false) [ "$val" != "true" ]; json_add_boolean "$key" $? ;;
[0-9]) json_add_int "$key" "$val" ;;
*) json_add_string "$key" "$val" ;;
esac
json_select ..
json_select ..
}
ucidef_add_switch_port_attr() {
local name="$1"
local port="$2"
local key="$3"
local val="$4"
local ports i num
json_select_object switch
json_select_object "$name"
json_get_keys ports ports
json_select_array ports
for i in $ports; do
json_select "$i"
json_get_var num num
if [ -n "$num" ] && [ $num -eq $port ]; then
json_select_object attr
case "$val" in
true|false) [ "$val" != "true" ]; json_add_boolean "$key" $? ;;
[0-9]) json_add_int "$key" "$val" ;;
*) json_add_string "$key" "$val" ;;
esac
json_select ..
fi
json_select ..
done
json_select ..
json_select ..
json_select ..
}
ucidef_set_interface_macaddr() {
local network="$1"
local macaddr="$2"
json_select_object network
json_select "$network"
[ $? -eq 0 ] || {
json_select ..
return
}
json_add_string macaddr "$macaddr"
json_select ..
json_select ..
}
ucidef_add_atm_bridge() {
local vpi="$1"
local vci="$2"
local encaps="$3"
local payload="$4"
json_select_object dsl
json_select_object atmbridge
json_add_int vpi "$vpi"
json_add_int vci "$vci"
json_add_string encaps "$encaps"
json_add_string payload "$payload"
json_select ..
json_select ..
}
ucidef_add_adsl_modem() {
local annex="$1"
local firmware="$2"
json_select_object dsl
json_select_object modem
json_add_string type "adsl"
json_add_string annex "$annex"
json_add_string firmware "$firmware"
json_select ..
json_select ..
}
ucidef_add_vdsl_modem() {
local annex="$1"
local firmware="$2"
local tone="$3"
local xfer_mode="$4"
json_select_object dsl
json_select_object modem
json_add_string type "vdsl"
json_add_string annex "$annex"
json_add_string firmware "$firmware"
json_add_string tone "$tone"
json_add_string xfer_mode "$xfer_mode"
json_select ..
json_select ..
}
ucidef_set_led_netdev() {
local cfg="led_$1"
local name="$2"
local sysfs="$3"
local dev="$4"
json_select_object led
json_select_object "$1"
json_add_string name "$name"
json_add_string type netdev
json_add_string sysfs "$sysfs"
json_add_string device "$dev"
json_select ..
json_select ..
}
ucidef_set_led_usbdev() {
local cfg="led_$1"
local name="$2"
local sysfs="$3"
local dev="$4"
json_select_object led
json_select_object "$1"
json_add_string name "$name"
json_add_string type usb
json_add_string sysfs "$sysfs"
json_add_string device "$dev"
json_select ..
json_select ..
}
ucidef_set_led_wlan() {
local cfg="led_$1"
local name="$2"
local sysfs="$3"
local trigger="$4"
json_select_object led
json_select_object "$1"
json_add_string name "$name"
json_add_string type trigger
json_add_string sysfs "$sysfs"
json_add_string trigger "$trigger"
json_select ..
json_select ..
}
ucidef_set_led_switch() {
local cfg="led_$1"
local name="$2"
local sysfs="$3"
local trigger="$4"
local port_mask="$5"
json_select_object led
json_select_object "$1"
json_add_string name "$name"
json_add_string type switch
json_add_string sysfs "$sysfs"
json_add_string trigger "$trigger"
json_add_string port_mask "$port_mask"
json_select ..
json_select ..
}
ucidef_set_led_default() {
local cfg="led_$1"
local name="$2"
local sysfs="$3"
local default="$4"
json_select_object led
json_select_object "$1"
json_add_string name "$name"
json_add_string sysfs "$sysfs"
json_add_string default "$default"
json_select ..
json_select ..
}
ucidef_set_led_gpio() {
local cfg="led_$1"
local name="$2"
local sysfs="$3"
local gpio="$4"
local inverted="$5"
json_select_object led
json_select_object "$1"
json_add_string type gpio
json_add_string name "$name"
json_add_string sysfs "$sysfs"
json_add_string trigger "$trigger"
json_add_int gpio "$gpio"
json_add_boolean inverted "$inverted"
json_select ..
json_select ..
}
ucidef_set_led_ide() {
local cfg="led_$1"
local name="$2"
local sysfs="$3"
json_select_object led
json_select_object "$1"
json_add_string name "$name"
json_add_string sysfs "$sysfs"
json_add_string trigger ide-disk
json_select ..
json_select ..
}
ucidef_set_led_timer() {
local cfg="led_$1"
local name="$2"
local sysfs="$3"
local delayon="$4"
local delayoff="$5"
json_select_object led
json_select_object "$1"
json_add_string type timer
json_add_string name "$name"
json_add_string sysfs "$sysfs"
json_add_int delayon "$delayon"
json_add_int delayoff "$delayoff"
json_select ..
json_select ..
}
ucidef_set_led_rssi() {
local cfg="led_$1"
local name="$2"
local sysfs="$3"
local iface="$4"
local minq="$5"
local maxq="$6"
local offset="$7"
local factor="$8"
json_select_object led
json_select_object "$1"
json_add_string type rssi
json_add_string name "$name"
json_add_string iface "$iface"
json_add_string sysfs "$sysfs"
json_add_string minq "$minq"
json_add_string maxq "$maxq"
json_add_string offset "$offset"
json_add_string factor "$factor"
json_select ..
json_select ..
}
ucidef_set_rssimon() {
local dev="$1"
local refresh="$2"
local threshold="$3"
json_select_object rssimon
json_select_object "$dev"
[ -n "$refresh" ] && json_add_int refresh "$refresh"
[ -n "$threshold" ] && json_add_int threshold "$threshold"
json_select ..
json_select ..
}
ucidef_add_gpio_switch() {
local cfg="$1"
local name="$2"
local pin="$3"
local default="${4:-0}"
json_select_object gpioswitch
json_select_object "$cfg"
json_add_string name "$name"
json_add_int pin "$pin"
json_add_int default "$default"
json_select ..
json_select ..
}
board_config_update() {
json_init
[ -f ${CFG} ] && json_load "$(cat ${CFG})"
# auto-initialize model id and name if applicable
if ! json_is_a model object; then
json_select_object model
[ -f "/tmp/sysinfo/board_name" ] && \
json_add_string id "$(cat /tmp/sysinfo/board_name)"
[ -f "/tmp/sysinfo/model" ] && \
json_add_string name "$(cat /tmp/sysinfo/model)"
json_select ..
fi
}
board_config_flush() {
json_dump -i > /tmp/.board.json
mv /tmp/.board.json ${CFG}
}

@ -1,345 +1,576 @@
#!/bin/sh #!/bin/ash
# Copyright (C) 2011 OpenWrt.org
UCIDEF_LEDS_CHANGED=0 CFG=/etc/board.json
UCIDEF_GPIO_SWITCHES_CHANGED=0
ucidef_set_led_netdev() { . /lib/functions.sh
local cfg="led_$1" . /usr/share/libubox/jshn.sh
local name=$2
local sysfs=$3 json_select_array() {
local dev=$4 local _json_no_warning=1
uci -q get system.$cfg && return 0 json_select "$1"
[ $? = 0 ] && return
uci batch <<EOF
set system.$cfg='led' json_add_array "$1"
set system.$cfg.name='$name' json_close_array
set system.$cfg.sysfs='$sysfs'
set system.$cfg.trigger='netdev' json_select "$1"
set system.$cfg.dev='$dev'
set system.$cfg.mode='link tx rx'
EOF
UCIDEF_LEDS_CHANGED=1
} }
ucidef_set_led_usbdev() { json_select_object() {
local cfg="led_$1" local _json_no_warning=1
local name=$2
local sysfs=$3 json_select "$1"
local dev=$4 [ $? = 0 ] && return
uci -q get system.$cfg && return 0 json_add_object "$1"
json_close_object
uci batch <<EOF
set system.$cfg='led' json_select "$1"
set system.$cfg.name='$name'
set system.$cfg.sysfs='$sysfs'
set system.$cfg.trigger='usbdev'
set system.$cfg.dev='$dev'
set system.$cfg.interval='50'
EOF
UCIDEF_LEDS_CHANGED=1
} }
ucidef_set_led_wlan() { _ucidef_set_interface() {
local cfg="led_$1" local name="$1"
local name=$2 local iface="$2"
local sysfs=$3 local proto="$3"
local trigger=$4
json_select_object "$name"
uci -q get system.$cfg && return 0 json_add_string ifname "$iface"
uci batch <<EOF if ! json_is_a protocol string; then
set system.$cfg='led' case "$proto" in
set system.$cfg.name='$name' static|dhcp|none|pppoe) : ;;
set system.$cfg.sysfs='$sysfs' *)
set system.$cfg.trigger='$trigger' case "$name" in
EOF lan) proto="static" ;;
UCIDEF_LEDS_CHANGED=1 wan) proto="dhcp" ;;
*) proto="none" ;;
esac
;;
esac
json_add_string protocol "$proto"
fi
json_select ..
} }
ucidef_set_led_switch() { ucidef_set_board_id() {
local cfg="led_$1" json_select_object model
local name=$2 json_add_string id "$1"
local sysfs=$3 json_select ..
local trigger=$4
local port_mask=$5
uci -q get system.$cfg && return 0
uci batch <<EOF
set system.$cfg='led'
set system.$cfg.name='$name'
set system.$cfg.sysfs='$sysfs'
set system.$cfg.trigger='$trigger'
set system.$cfg.port_mask='$port_mask'
EOF
UCIDEF_LEDS_CHANGED=1
} }
ucidef_set_led_default() { ucidef_set_model_name() {
local cfg="led_$1" json_select_object model
local name=$2 json_add_string name "$1"
local sysfs=$3 json_select ..
local default=$4
uci -q get system.$cfg && return 0
uci batch <<EOF
set system.$cfg='led'
set system.$cfg.name='$name'
set system.$cfg.sysfs='$sysfs'
set system.$cfg.default='$default'
EOF
UCIDEF_LEDS_CHANGED=1
} }
ucidef_set_led_rssi() { ucidef_set_interface_lan() {
local cfg="led_$1" json_select_object network
local name=$2 _ucidef_set_interface lan "$@"
local sysfs=$3 json_select ..
local iface=$4
local minq=$5
local maxq=$6
local offset=$7
local factor=$8
uci -q get system.$cfg && return 0
uci batch <<EOF
set system.$cfg='led'
set system.$cfg.name='$name'
set system.$cfg.sysfs='$sysfs'
set system.$cfg.trigger='rssi'
set system.$cfg.iface='rssid_$iface'
set system.$cfg.minq='$minq'
set system.$cfg.maxq='$maxq'
set system.$cfg.offset='$offset'
set system.$cfg.factor='$factor'
EOF
UCIDEF_LEDS_CHANGED=1
} }
ucidef_set_led_timer() { ucidef_set_interface_wan() {
local cfg="led_$1" json_select_object network
local name=$2 _ucidef_set_interface wan "$@"
local sysfs=$3 json_select ..
local delayon=$4
local delayoff=$5
uci -q get system.$cfg && return 0
uci batch <<EOF
set system.$cfg='led'
set system.$cfg.name='$name'
set system.$cfg.sysfs='$sysfs'
set system.$cfg.trigger='timer'
set system.$cfg.delayon='$delayon'
set system.$cfg.delayoff='$delayoff'
EOF
UCIDEF_LEDS_CHANGED=1
} }
ucidef_set_led_mmc() { ucidef_set_interfaces_lan_wan() {
local cfg="led_$1" local lan_if="$1"
local name=$2 local wan_if="$2"
local sysfs=$3
local trigger=$4 json_select_object network
_ucidef_set_interface lan "$lan_if"
uci -q get system.$cfg && return 0 _ucidef_set_interface wan "$wan_if"
json_select ..
uci batch <<EOF
set system.$cfg='led'
set system.$cfg.name='$name'
set system.$cfg.sysfs='$sysfs'
set system.$cfg.trigger='$trigger'
EOF
UCIDEF_LEDS_CHANGED=1
} }
ucidef_set_led_trigger_gpio() { _ucidef_add_switch_port() {
local cfg="led_$1" # inherited: $num $device $need_tag $role $index $prev_role
local name=$2 # inherited: $n_cpu $n_ports $n_vlan $cpu0 $cpu1 $cpu2 $cpu3 $cpu4 $cpu5
local sysfs=$3
local gpio=$4 n_ports=$((n_ports + 1))
local inverted=$5
json_select_array ports
uci -q get system.$cfg && return 0 json_add_object
json_add_int num "$num"
uci batch <<EOF [ -n "$device" ] && json_add_string device "$device"
set system.$cfg='led' [ -n "$need_tag" ] && json_add_boolean need_tag "$need_tag"
set system.$cfg.name='$name' [ -n "$role" ] && json_add_string role "$role"
set system.$cfg.sysfs='$sysfs' [ -n "$index" ] && json_add_int index "$index"
set system.$cfg.trigger='gpio' json_close_object
set system.$cfg.gpio='$gpio' json_select ..
set system.$cfg.inverted='$inverted'
EOF # record pointer to cpu entry for lookup in _ucidef_finish_switch_roles()
UCIDEF_LEDS_CHANGED=1 [ -n "$device" ] && {
export "cpu$n_cpu=$n_ports"
n_cpu=$((n_cpu + 1))
}
# create/append object to role list
[ -n "$role" ] && {
json_select_array roles
if [ "$role" != "$prev_role" ]; then
json_add_object
json_add_string role "$role"
json_add_string ports "$num"
json_close_object
prev_role="$role"
n_vlan=$((n_vlan + 1))
else
json_select_object "$n_vlan"
json_get_var port ports
json_add_string ports "$port $num"
json_select ..
fi
json_select ..
}
} }
ucidef_set_led_ide_disk() { _ucidef_finish_switch_roles() {
local cfg="led_$1" # inherited: $name $n_cpu $n_vlan $cpu0 $cpu1 $cpu2 $cpu3 $cpu4 $cpu5
local name=$2 local index role roles num device need_tag port ports
local sysfs=$3
json_select switch
uci -q get system.$cfg && return 0 json_select "$name"
json_get_keys roles roles
uci batch <<EOF json_select ..
set system.$cfg='led' json_select ..
set system.$cfg.name='$name'
set system.$cfg.sysfs='$sysfs' for index in $roles; do
set system.$cfg.trigger='ide-disk' eval "port=\$cpu$(((index - 1) % n_cpu))"
EOF
UCIDEF_LEDS_CHANGED=1 json_select switch
json_select "$name"
json_select ports
json_select "$port"
json_get_vars num device need_tag
json_select ..
json_select ..
if [ $n_vlan -gt $n_cpu -o ${need_tag:-0} -eq 1 ]; then
num="${num}t"
device="${device}.${index}"
fi
json_select roles
json_select "$index"
json_get_vars role ports
json_add_string ports "$ports $num"
json_add_string device "$device"
json_select ..
json_select ..
json_select ..
json_select ..
json_select_object network
local devices
json_select_object "$role"
# attach previous interfaces (for multi-switch devices)
json_get_var devices ifname
if ! list_contains devices "$device"; then
devices="${devices:+$devices }$device"
fi
json_select ..
_ucidef_set_interface "$role" "$devices"
json_select ..
done
} }
ucidef_set_rssimon() { ucidef_add_switch() {
local dev="$1" local name="$1"; shift
local refresh="$2" local port num role device index need_tag prev_role
local threshold="$3" local cpu0 cpu1 cpu2 cpu3 cpu4 cpu5
local n_cpu=0 n_vlan=0 n_ports=0
json_select_object switch
json_select_object "$name"
json_add_boolean enable 1
json_add_boolean reset 1
for port in "$@"; do
case "$port" in
[0-9]*@*)
num="${port%%@*}"
device="${port##*@}"
need_tag=0
[ "${num%t}" != "$num" ] && {
num="${num%t}"
need_tag=1
}
;;
[0-9]*:*:[0-9]*)
num="${port%%:*}"
index="${port##*:}"
role="${port#[0-9]*:}"; role="${role%:*}"
;;
[0-9]*:*)
num="${port%%:*}"
role="${port##*:}"
;;
esac
if [ -n "$num" ] && [ -n "$device$role" ]; then
_ucidef_add_switch_port
fi
unset num device role index need_tag
done
json_select ..
json_select ..
_ucidef_finish_switch_roles
}
ucidef_add_switch_attr() {
local name="$1"
local key="$2"
local val="$3"
local cfg="rssid_$dev" json_select_object switch
json_select_object "$name"
uci -q get system.$cfg && return 0 case "$val" in
true|false) [ "$val" != "true" ]; json_add_boolean "$key" $? ;;
[0-9]) json_add_int "$key" "$val" ;;
*) json_add_string "$key" "$val" ;;
esac
uci batch <<EOF json_select ..
set system.$cfg='rssid' json_select ..
set system.$cfg.dev='$dev'
set system.$cfg.refresh='$refresh'
set system.$cfg.threshold='$threshold'
EOF
UCIDEF_LEDS_CHANGED=1
} }
ucidef_commit_leds() ucidef_add_switch_port_attr() {
{ local name="$1"
[ "$UCIDEF_LEDS_CHANGED" = "1" ] && uci commit system local port="$2"
local key="$3"
local val="$4"
local ports i num
json_select_object switch
json_select_object "$name"
json_get_keys ports ports
json_select_array ports
for i in $ports; do
json_select "$i"
json_get_var num num
if [ -n "$num" ] && [ $num -eq $port ]; then
json_select_object attr
case "$val" in
true|false) [ "$val" != "true" ]; json_add_boolean "$key" $? ;;
[0-9]) json_add_int "$key" "$val" ;;
*) json_add_string "$key" "$val" ;;
esac
json_select ..
fi
json_select ..
done
json_select ..
json_select ..
json_select ..
} }
ucidef_set_gpio_switch() { ucidef_set_interface_macaddr() {
local cfg="gpio_switch_$1" local network="$1"
local macaddr="$2"
json_select_object network
json_select "$network"
[ $? -eq 0 ] || {
json_select ..
return
}
json_add_string macaddr "$macaddr"
json_select ..
json_select ..
}
ucidef_add_atm_bridge() {
local vpi="$1"
local vci="$2"
local encaps="$3"
local payload="$4"
json_select_object dsl
json_select_object atmbridge
json_add_int vpi "$vpi"
json_add_int vci "$vci"
json_add_string encaps "$encaps"
json_add_string payload "$payload"
json_select ..
json_select ..
}
ucidef_add_adsl_modem() {
local annex="$1"
local firmware="$2"
json_select_object dsl
json_select_object modem
json_add_string type "adsl"
json_add_string annex "$annex"
json_add_string firmware "$firmware"
json_select ..
json_select ..
}
ucidef_add_vdsl_modem() {
local annex="$1"
local firmware="$2"
local tone="$3"
local xfer_mode="$4"
json_select_object dsl
json_select_object modem
json_add_string type "vdsl"
json_add_string annex "$annex"
json_add_string firmware "$firmware"
json_add_string tone "$tone"
json_add_string xfer_mode "$xfer_mode"
json_select ..
json_select ..
}
ucidef_set_led_netdev() {
local cfg="led_$1"
local name="$2" local name="$2"
local gpio_pin="$3" local sysfs="$3"
# use "0" as default value local dev="$4"
local default="${4:-0}"
json_select_object led
uci -q get "system.$cfg" && return 0 json_select_object "$1"
json_add_string name "$name"
json_add_string type netdev
json_add_string sysfs "$sysfs"
json_add_string device "$dev"
json_select ..
uci batch <<EOF json_select ..
set system.$cfg='gpio_switch'
set system.$cfg.name='$name'
set system.$cfg.gpio_pin='$gpio_pin'
set system.$cfg.value='$default'
EOF
UCIDEF_GPIO_SWITCHES_CHANGED=1
} }
ucidef_commit_gpio_switches() ucidef_set_led_usbdev() {
{ local cfg="led_$1"
[ "$UCIDEF_GPIO_SWITCHES_CHANGED" = "1" ] && uci commit system local name="$2"
local sysfs="$3"
local dev="$4"
json_select_object led
json_select_object "$1"
json_add_string name "$name"
json_add_string type usb
json_add_string sysfs "$sysfs"
json_add_string device "$dev"
json_select ..
json_select ..
} }
ucidef_set_interface_loopback() { ucidef_set_led_wlan() {
uci batch <<EOF local cfg="led_$1"
set network.loopback='interface' local name="$2"
set network.loopback.ifname='lo' local sysfs="$3"
set network.loopback.proto='static' local trigger="$4"
set network.loopback.ipaddr='127.0.0.1'
set network.loopback.netmask='255.0.0.0' json_select_object led
set network.globals='globals'
set network.globals.ula_prefix='auto' json_select_object "$1"
EOF json_add_string name "$name"
json_add_string type trigger
json_add_string sysfs "$sysfs"
json_add_string trigger "$trigger"
json_select ..
json_select ..
} }
ucidef_set_interface_raw() { ucidef_set_led_switch() {
local cfg=$1 local cfg="led_$1"
local ifname=$2 local name="$2"
local proto=${3:-"none"} local sysfs="$3"
local trigger="$4"
local port_mask="$5"
json_select_object led
json_select_object "$1"
json_add_string name "$name"
json_add_string type switch
json_add_string sysfs "$sysfs"
json_add_string trigger "$trigger"
json_add_string port_mask "$port_mask"
json_select ..
uci batch <<EOF json_select ..
set network.$cfg='interface'
set network.$cfg.ifname='$ifname'
set network.$cfg.proto='$proto'
EOF
} }
ucidef_set_interface_lan() { ucidef_set_led_default() {
local ifname=$1 local cfg="led_$1"
local name="$2"
uci batch <<EOF local sysfs="$3"
set network.lan='interface' local default="$4"
set network.lan.ifname='$ifname'
set network.lan.force_link=1 json_select_object led
set network.lan.type='bridge'
set network.lan.proto='static' json_select_object "$1"
set network.lan.ipaddr='192.168.1.1' json_add_string name "$name"
set network.lan.netmask='255.255.255.0' json_add_string sysfs "$sysfs"
set network.lan.ip6assign='60' json_add_string default "$default"
EOF json_select ..
json_select ..
} }
ucidef_set_interface_wan() { ucidef_set_led_gpio() {
local ifname=$1 local cfg="led_$1"
local name="$2"
uci batch <<EOF local sysfs="$3"
set network.wan='interface' local gpio="$4"
set network.wan.ifname='$ifname' local inverted="$5"
set network.wan.proto='dhcp'
set network.wan6='interface' json_select_object led
set network.wan6.ifname='$ifname'
set network.wan6.proto='dhcpv6' json_select_object "$1"
EOF json_add_string type gpio
json_add_string name "$name"
json_add_string sysfs "$sysfs"
json_add_string trigger "$trigger"
json_add_int gpio "$gpio"
json_add_boolean inverted "$inverted"
json_select ..
json_select ..
} }
ucidef_set_interfaces_lan_wan() { ucidef_set_led_ide() {
local lan_ifname=$1 local cfg="led_$1"
local wan_ifname=$2 local name="$2"
local sysfs="$3"
json_select_object led
ucidef_set_interface_lan "$lan_ifname" json_select_object "$1"
ucidef_set_interface_wan "$wan_ifname" json_add_string name "$name"
json_add_string sysfs "$sysfs"
json_add_string trigger ide-disk
json_select ..
json_select ..
} }
ucidef_set_interface_macaddr() { ucidef_set_led_timer() {
local ifname=$1 local cfg="led_$1"
local mac=$2 local name="$2"
local sysfs="$3"
local delayon="$4"
local delayoff="$5"
json_select_object led
uci batch <<EOF json_select_object "$1"
set network.$ifname.macaddr='$mac' json_add_string type timer
EOF json_add_string name "$name"
json_add_string sysfs "$sysfs"
json_add_int delayon "$delayon"
json_add_int delayoff "$delayoff"
json_select ..
json_select ..
} }
ucidef_add_switch() { ucidef_set_led_rssi() {
local name=$1 local cfg="led_$1"
local reset=$2 local name="$2"
local enable=$3 local sysfs="$3"
uci batch <<EOF local iface="$4"
add network switch local minq="$5"
set network.@switch[-1].name='$name' local maxq="$6"
set network.@switch[-1].reset='$reset' local offset="$7"
set network.@switch[-1].enable_vlan='$enable' local factor="$8"
EOF
json_select_object led
json_select_object "$1"
json_add_string type rssi
json_add_string name "$name"
json_add_string iface "$iface"
json_add_string sysfs "$sysfs"
json_add_string minq "$minq"
json_add_string maxq "$maxq"
json_add_string offset "$offset"
json_add_string factor "$factor"
json_select ..
json_select ..
} }
ucidef_add_switch_vlan() { ucidef_set_rssimon() {
local device=$1 local dev="$1"
local vlan=$2 local refresh="$2"
local ports=$3 local threshold="$3"
uci batch <<EOF
add network switch_vlan json_select_object rssimon
set network.@switch_vlan[-1].device='$device'
set network.@switch_vlan[-1].vlan='$vlan' json_select_object "$dev"
set network.@switch_vlan[-1].ports='$ports' [ -n "$refresh" ] && json_add_int refresh "$refresh"
EOF [ -n "$threshold" ] && json_add_int threshold "$threshold"
json_select ..
json_select ..
} }
ucidef_add_switch_port() { ucidef_add_gpio_switch() {
local device=$1 local cfg="$1"
local port=$2 local name="$2"
uci batch <<EOF local pin="$3"
add network switch_port local default="${4:-0}"
set network.@switch_port[-1].device='$device'
set network.@switch_port[-1].port='$port' json_select_object gpioswitch
EOF json_select_object "$cfg"
json_add_string name "$name"
json_add_int pin "$pin"
json_add_int default "$default"
json_select ..
json_select ..
} }
board_config_update() {
json_init
[ -f ${CFG} ] && json_load "$(cat ${CFG})"
# auto-initialize model id and name if applicable
if ! json_is_a model object; then
json_select_object model
[ -f "/tmp/sysinfo/board_name" ] && \
json_add_string id "$(cat /tmp/sysinfo/board_name)"
[ -f "/tmp/sysinfo/model" ] && \
json_add_string name "$(cat /tmp/sysinfo/model)"
json_select ..
fi
}
board_config_flush() {
json_dump -i > /tmp/.board.json
mv /tmp/.board.json ${CFG}
}

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2011 OpenWrt.org # Copyright (C) 2011 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/ar71xx.sh . /lib/ar71xx.sh
board_config_update board_config_update

@ -4,7 +4,7 @@
# #
. /lib/functions/system.sh . /lib/functions/system.sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/ar71xx.sh . /lib/ar71xx.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2015 OpenWrt.org # Copyright (C) 2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/ar71xx.sh . /lib/ar71xx.sh
board_config_update board_config_update

@ -4,7 +4,7 @@
# #
. /lib/arc.sh . /lib/arc.sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2014-2015 OpenWrt.org # Copyright (C) 2014-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/at91.sh . /lib/at91.sh
board_config_update board_config_update

@ -2,7 +2,7 @@
# Copyright 2012-2015 OpenWrt.org # Copyright 2012-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2011 OpenWrt.org # Copyright (C) 2011 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
# Copyright (C) 2014-2015 OpenWrt.org # Copyright (C) 2014-2015 OpenWrt.org
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/brcm2708.sh . /lib/brcm2708.sh
. /lib/functions.sh . /lib/functions.sh
. /lib/functions/system.sh . /lib/functions/system.sh

@ -2,7 +2,7 @@
# Copyright (C) 2006-2015 OpenWrt.org # Copyright (C) 2006-2015 OpenWrt.org
. /lib/functions/system.sh . /lib/functions/system.sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
detect_by_vlanports() { detect_by_vlanports() {
local vlan0ports="$(nvram get vlan0ports)" local vlan0ports="$(nvram get vlan0ports)"

@ -3,7 +3,7 @@
# Copyright (C) 2013-2015 OpenWrt.org # Copyright (C) 2013-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/brcm63xx.sh . /lib/brcm63xx.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2012-2015 OpenWrt.org # Copyright (C) 2012-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/brcm63xx.sh . /lib/brcm63xx.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2013-2015 OpenWrt.org # Copyright (C) 2013-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/imx6.sh . /lib/imx6.sh
board=$(imx6_board_name) board=$(imx6_board_name)

@ -3,7 +3,7 @@
# Copyright (C) 2015 OpenWrt.org # Copyright (C) 2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/ipq806x.sh . /lib/ipq806x.sh
board_config_update board_config_update

@ -4,7 +4,7 @@
# Copyright (c) 2011-2015 OpenWrt.org # Copyright (c) 2011-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/ipq806x.sh . /lib/ipq806x.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2012-2015 OpenWrt.org # Copyright (C) 2012-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/kirkwood.sh . /lib/kirkwood.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2012-2015 OpenWrt.org # Copyright (C) 2012-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/kirkwood.sh . /lib/kirkwood.sh
board_config_update board_config_update

@ -4,7 +4,7 @@
# based on ar71xx # based on ar71xx
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/functions/lantiq.sh . /lib/functions/lantiq.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2011-2015 OpenWrt.org # Copyright (C) 2011-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/functions/system.sh . /lib/functions/system.sh
. /lib/functions/lantiq.sh . /lib/functions/lantiq.sh

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
# Copyright (C) 2015 OpenWrt.org # Copyright (C) 2015 OpenWrt.org
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2012-2015 OpenWrt.org # Copyright (C) 2012-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/mcs814x.sh . /lib/mcs814x.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2015 OpenWrt.org # Copyright (C) 2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update
ucidef_set_interface_lan "eth0" ucidef_set_interface_lan "eth0"

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
# Copyright (C) 2014-2015 OpenWrt.org # Copyright (C) 2014-2015 OpenWrt.org
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/mpc85xx.sh . /lib/mpc85xx.sh
. /lib/functions.sh . /lib/functions.sh
. /lib/functions/system.sh . /lib/functions/system.sh

@ -3,7 +3,7 @@
# Copyright (C) 2014-2015 OpenWrt.org # Copyright (C) 2014-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/mvebu.sh . /lib/mvebu.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2014-2015 OpenWrt.org # Copyright (C) 2014-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/mvebu.sh . /lib/mvebu.sh
board_config_update board_config_update

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
# Copyright (C) 2013-2015 OpenWrt.org # Copyright (C) 2013-2015 OpenWrt.org
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/mxs.sh . /lib/mxs.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2014-2015 OpenWrt.org # Copyright (C) 2014-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/netlogic.sh . /lib/netlogic.sh
board_config_update board_config_update

@ -3,7 +3,7 @@
# Copyright (C) 2014-2015 OpenWrt.org # Copyright (C) 2014-2015 OpenWrt.org
# #
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/functions/octeon.sh . /lib/functions/octeon.sh
board_config_update board_config_update

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/oxnas.sh . /lib/oxnas.sh
board=$(oxnas_board_name) board=$(oxnas_board_name)

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/functions/system.sh . /lib/functions/system.sh
board_config_update board_config_update

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/ramips.sh . /lib/ramips.sh
set_usb_led() { set_usb_led() {

@ -2,7 +2,7 @@
. /lib/functions.sh . /lib/functions.sh
. /lib/ramips.sh . /lib/ramips.sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
. /lib/functions/system.sh . /lib/functions/system.sh
ramips_setup_rt3x5x_vlans() ramips_setup_rt3x5x_vlans()

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
# Copyright (C) 2015 OpenWrt.org # Copyright (C) 2015 OpenWrt.org
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update
ucidef_set_interface_lan "eth0" "dhcp" ucidef_set_interface_lan "eth0" "dhcp"

@ -4,7 +4,7 @@
# #
. /lib/sunxi.sh . /lib/sunxi.sh
. /lib/functions/uci-defaults-new.sh . /lib/functions/uci-defaults.sh
board_config_update board_config_update

Loading…
Cancel
Save