aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mcs814x/base-files/etc/board.d
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
commitcacd3d083441694dacbfe9fce595bd3a7d4a4c28 (patch)
tree860b265aec61ed4eacd92ad172d90142ff262d02 /target/linux/mcs814x/base-files/etc/board.d
parent75f3a9dabde6e7b811f66ca0f1b1601eb2d25319 (diff)
downloadmaster-187ad058-cacd3d083441694dacbfe9fce595bd3a7d4a4c28.tar.gz
master-187ad058-cacd3d083441694dacbfe9fce595bd3a7d4a4c28.tar.bz2
master-187ad058-cacd3d083441694dacbfe9fce595bd3a7d4a4c28.zip
mcs814x: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47761 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/mcs814x/base-files/etc/board.d')
-rwxr-xr-xtarget/linux/mcs814x/base-files/etc/board.d/01_leds28
-rwxr-xr-xtarget/linux/mcs814x/base-files/etc/board.d/02_network12
2 files changed, 40 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
diff --git a/target/linux/mcs814x/base-files/etc/board.d/02_network b/target/linux/mcs814x/base-files/etc/board.d/02_network
new file mode 100755
index 0000000000..a447923f42
--- /dev/null
+++ b/target/linux/mcs814x/base-files/etc/board.d/02_network
@@ -0,0 +1,12 @@
+#!/bin/sh
+#
+# Copyright (C) 2015 OpenWrt.org
+#
+
+. /lib/functions/uci-defaults-new.sh
+
+board_config_update
+ucidef_set_interface_lan "eth0"
+board_config_flush
+
+exit 0