aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mcs814x/base-files/etc/board.d/01_leds
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-12-04 15:02:13 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-12-04 15:02:13 +0000
commitba8a44995fe321bfc57a61fdb2a82cabd7605e94 (patch)
treec547dfe5ac92641fb34040077b5fbb82a770f302 /target/linux/mcs814x/base-files/etc/board.d/01_leds
parent8298dfef5c5452928f6413baf8953f1e9877eab7 (diff)
downloadupstream-ba8a44995fe321bfc57a61fdb2a82cabd7605e94.tar.gz
upstream-ba8a44995fe321bfc57a61fdb2a82cabd7605e94.tar.bz2
upstream-ba8a44995fe321bfc57a61fdb2a82cabd7605e94.zip
mcs814x: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47761
Diffstat (limited to 'target/linux/mcs814x/base-files/etc/board.d/01_leds')
-rwxr-xr-xtarget/linux/mcs814x/base-files/etc/board.d/01_leds28
1 files changed, 28 insertions, 0 deletions
diff --git a/target/linux/mcs814x/base-files/etc/board.d/01_leds b/target/linux/mcs814x/base-files/etc/board.d/01_leds
new file mode 100755
index 0000000000..3b1de4ae9b
--- /dev/null
+++ b/target/linux/mcs814x/base-files/etc/board.d/01_leds
@@ -0,0 +1,28 @@
+#!/bin/sh
+#
+# Copyright (C) 2012-2015 OpenWrt.org
+#
+
+. /lib/functions/uci-defaults-new.sh
+. /lib/mcs814x.sh
+
+board_config_update
+
+board=$(mcs814x_board_name)
+
+case "$board" in
+dlan-usb-extender)
+ ucidef_set_led_usbdev "usb" "USB" "dlan-usb-extender:green:usb" "2-1"
+ ;;
+rbt-832)
+ ucidef_set_led_usbdev "usb1" "USB1" "rbt-832:red:usb0" "1-1"
+ ucidef_set_led_usbdev "usb2" "USB2" "rbt-832:red:usb1" "1-2"
+ ucidef_set_led_usbdev "usb3" "USB3" "rbt-832:red:usb2" "1-3"
+ ucidef_set_led_usbdev "usb4" "USB4" "rbt-832:red:usb3" "1-4"
+ ucidef_set_led_netdev "eth" "eth" "rbt-832:red:ethernet" "eth0"
+ ;;
+esac
+
+board_config_flush
+
+exit 0