base-files: support port_state LED types in board.d
Add support for handling port_state LEDs as used by ADM5120. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
197c32e7bd
commit
07f03d0833
2 changed files with 27 additions and 0 deletions
|
@ -354,6 +354,14 @@ generate_led() {
|
||||||
EOF
|
EOF
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
portstate)
|
||||||
|
local port_state
|
||||||
|
json_get_vars port_state
|
||||||
|
uci -q batch <<-EOF
|
||||||
|
set system.$cfg.port_state='$port_state'
|
||||||
|
EOF
|
||||||
|
;;
|
||||||
|
|
||||||
timer|oneshot)
|
timer|oneshot)
|
||||||
local delayon delayoff
|
local delayon delayoff
|
||||||
json_get_vars delayon delayoff
|
json_get_vars delayon delayoff
|
||||||
|
|
|
@ -432,6 +432,25 @@ ucidef_set_led_switch() {
|
||||||
json_select ..
|
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() {
|
ucidef_set_led_default() {
|
||||||
local cfg="led_$1"
|
local cfg="led_$1"
|
||||||
local name="$2"
|
local name="$2"
|
||||||
|
|
Loading…
Reference in a new issue