From: Imre Kaloz Date: Tue, 1 Jul 2014 09:45:41 +0000 (+0000) Subject: set led triggers for the Linksys WRT1900AC X-Git-Tag: reboot~6717 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b7b222279cbcd08359f4da630043c9e9163b2db3;p=oweals%2Fopenwrt.git set led triggers for the Linksys WRT1900AC Signed-off-by: Imre Kaloz SVN-Revision: 41436 --- diff --git a/target/linux/mvebu/base-files/etc/uci-defaults/01_leds b/target/linux/mvebu/base-files/etc/uci-defaults/01_leds new file mode 100755 index 0000000000..64886204d7 --- /dev/null +++ b/target/linux/mvebu/base-files/etc/uci-defaults/01_leds @@ -0,0 +1,22 @@ +#!/bin/sh +# +# Copyright (C) 2014 OpenWrt.org +# + +. /lib/functions/uci-defaults.sh +. /lib/mvebu.sh + +board=$(mvebu_board_name) + +case "$board" in +armada-xp-mamba) + #ucidef_set_led_netdev "wan" "WAN" "tlc59116:1" "eth1" + ucidef_set_led_usbdev "usb1" "USB1" "tlc59116:5" "1-1" + ucidef_set_led_usbdev "usb2" "USB2" "tlc59116:6" "2-2" + ;; + +esac + +ucidef_commit_leds + +exit 0