ramips: unify etc/board.d/01_leds configuration
authorP.Wassi <p.wassi@gmx.at>
Tue, 26 Jul 2016 17:18:53 +0000 (19:18 +0200)
committerJohn Crispin <john@phrozen.org>
Sun, 24 Jul 2016 04:38:30 +0000 (06:38 +0200)
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>
target/linux/ramips/base-files/etc/board.d/01_leds

index 8636a46daad848705cbe6ee08582afa5cfb77716..fc69f33600c0abad5008e7d7e739104b541d4e24 100755 (executable)
@@ -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}"
 }