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

base-files: board.d: support ide leds


Add ucidef_set_led_ide() to define "ide-disk" triggered leds.

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

SVN-Revision: 47729
parent 734ae1bd
No related branches found
No related tags found
No related merge requests found
...@@ -406,6 +406,22 @@ ucidef_set_led_gpio() { ...@@ -406,6 +406,22 @@ ucidef_set_led_gpio() {
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_rssi() { ucidef_set_led_rssi() {
local cfg="led_$1" local cfg="led_$1"
local name="$2" local name="$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