diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-04 15:02:13 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-04 15:02:13 +0000 |
commit | ba8a44995fe321bfc57a61fdb2a82cabd7605e94 (patch) | |
tree | c547dfe5ac92641fb34040077b5fbb82a770f302 /target/linux/mcs814x/base-files/etc/board.d | |
parent | 8298dfef5c5452928f6413baf8953f1e9877eab7 (diff) | |
download | upstream-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')
-rwxr-xr-x | target/linux/mcs814x/base-files/etc/board.d/01_leds | 28 | ||||
-rwxr-xr-x | target/linux/mcs814x/base-files/etc/board.d/02_network | 12 |
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 |