ramips: unify etc/board.d/01_leds configuration
Introduce an optional parameter at the local set_usb_led and set_wifi_led function such that they can take a triggering device. If no parameter is passed, behaviour is unchanged. Signed-off-by: P.Wassi <p.wassi@gmx.at>
This commit is contained in:
parent
42305ae24a
commit
525b9edc8a
1 changed files with 2 additions and 2 deletions
|
@ -4,11 +4,11 @@
|
|||
. /lib/ramips.sh
|
||||
|
||||
set_usb_led() {
|
||||
ucidef_set_led_usbdev "usb" "USB" "$1" "1-1"
|
||||
ucidef_set_led_usbdev "usb" "USB" "${1}" "${2:-1-1}"
|
||||
}
|
||||
|
||||
set_wifi_led() {
|
||||
ucidef_set_led_netdev "wifi_led" "wifi" "$1" "wlan0"
|
||||
ucidef_set_led_netdev "wifi_led" "wifi" "${1}" "${2:-wlan0}"
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue