base-files: support port_state LED types in board.d
[openwrt/openwrt.git] / package / base-files / files / lib / functions / uci-defaults.sh
index b097fba37cbc175240b4dabffe74b990b0196c14..8c954374a99c466322b07992e2ec591b5221e39a 100755 (executable)
@@ -432,6 +432,25 @@ ucidef_set_led_switch() {
        json_select ..
 }
 
+ucidef_set_led_portstate() {
+       local cfg="led_$1"
+       local name="$2"
+       local sysfs="$3"
+       local port_state="$4"
+
+       json_select_object led
+
+       json_select_object "$1"
+       json_add_string name "$name"
+       json_add_string type portstate
+       json_add_string sysfs "$sysfs"
+       json_add_string trigger port_state
+       json_add_string port_state "$port_state"
+       json_select ..
+
+       json_select ..
+}
+
 ucidef_set_led_default() {
        local cfg="led_$1"
        local name="$2"