2
0
forked from Ivasoft/openwrt

ipq806x: switch from uci-defaults to board.d

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>

SVN-Revision: 47730
This commit is contained in:
Jo-Philipp Wich
2015-12-03 21:13:12 +00:00
parent b3f8340a5e
commit 4615944c71
4 changed files with 52 additions and 42 deletions

View File

@@ -0,0 +1,28 @@
#!/bin/sh
#
# Copyright (C) 2015 OpenWrt.org
#
. /lib/functions/uci-defaults-new.sh
. /lib/ipq806x.sh
board_config_update
board=$(ipq806x_board_name)
case "$board" in
r7500)
ucidef_set_led_usbdev "usb1" "USB 1" "r7500:white:usb1" "1-1"
ucidef_set_led_usbdev "usb2" "USB 2" "r7500:white:usb3" "3-1"
ucidef_set_led_netdev "wan" "WAN" "r7500:white:wan" "eth0"
ucidef_set_led_ide "esata" "eSATA" "r7500:amber:esata"
ucidef_set_led_default "wps" "WPS" "r7500:white:wps" "0"
ucidef_set_led_default "rfkill" "rfkill" "r7500:white:rfkill" "0"
;;
*)
;;
esac
board_config_flush
exit 0