base-files: add support for the new ar8xxx MIB counters settings
authorPetr Štetiar <ynezz@true.cz>
Fri, 17 May 2019 08:53:18 +0000 (10:53 +0200)
committerPetr Štetiar <ynezz@true.cz>
Mon, 20 May 2019 19:19:48 +0000 (21:19 +0200)
Commit "generic: ar8216: add mib_poll_interval switch attribute" has
added mib_poll_interval global config option and commit "generic:
ar8216: group MIB counters and use two basic ones only by default" has
added mib_type config option.

So this patch adds ucidef_set_ar8xxx_switch_mib helper function which
would allow configuration of the above mentioned new switch config
options.

Signed-off-by: Petr Štetiar <ynezz@true.cz>
package/base-files/files/bin/config_generate
package/base-files/files/lib/functions/uci-defaults.sh

index df221cc26ca478a3923bf2299b7b2d26ae75119f..3ca035ca8b20d460644698636a025b6b5e3e2e5d 100755 (executable)
@@ -213,7 +213,8 @@ generate_switch() {
 
        json_select switch
        json_select "$key"
 
        json_select switch
        json_select "$key"
-       json_get_vars enable reset blinkrate cpu_port
+       json_get_vars enable reset blinkrate cpu_port \
+               ar8xxx_mib_type ar8xxx_mib_poll_interval
 
        uci -q batch <<-EOF
                add network switch
 
        uci -q batch <<-EOF
                add network switch
@@ -221,6 +222,8 @@ generate_switch() {
                set network.@switch[-1].reset='$reset'
                set network.@switch[-1].enable_vlan='$enable'
                set network.@switch[-1].blinkrate='$blinkrate'
                set network.@switch[-1].reset='$reset'
                set network.@switch[-1].enable_vlan='$enable'
                set network.@switch[-1].blinkrate='$blinkrate'
+               set network.@switch[-1].ar8xxx_mib_type='$ar8xxx_mib_type'
+               set network.@switch[-1].ar8xxx_mib_poll_interval='$ar8xxx_mib_poll_interval'
        EOF
 
        generate_switch_vlans_ports "$1"
        EOF
 
        generate_switch_vlans_ports "$1"
index 315df7b70821f5ce2a4feacbdf43564add957f29..1d57de5a70f3dfc23362241ea74740a09ff7d144 100755 (executable)
@@ -182,6 +182,19 @@ _ucidef_finish_switch_roles() {
        done
 }
 
        done
 }
 
+ucidef_set_ar8xxx_switch_mib() {
+       local name="$1"
+       local type="$2"
+       local interval="$3"
+
+       json_select_object switch
+               json_select_object "$name"
+                       json_add_int ar8xxx_mib_type $type
+                       json_add_int ar8xxx_mib_poll_interval $interval
+               json_select ..
+       json_select ..
+}
+
 ucidef_add_switch() {
        local name="$1"; shift
        local port num role device index need_tag prev_role
 ucidef_add_switch() {
        local name="$1"; shift
        local port num role device index need_tag prev_role