diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2016-10-14 13:50:41 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-10-24 08:45:06 +0200 |
commit | 2beab73fad3d4e7889f05e696ba4f033981293fa (patch) | |
tree | 1c4767bb61d8d4ddc55869c5e439ab5d65f31bbf /target | |
parent | 920f92265207c8bfb24136c7245e1558cc8337ec (diff) | |
download | upstream-2beab73fad3d4e7889f05e696ba4f033981293fa.tar.gz upstream-2beab73fad3d4e7889f05e696ba4f033981293fa.tar.bz2 upstream-2beab73fad3d4e7889f05e696ba4f033981293fa.zip |
mvebu: add missing status LEDs for Linksys WRT1200AC and WRT1900ACv2
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/mvebu/base-files/etc/diag.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/target/linux/mvebu/base-files/etc/diag.sh b/target/linux/mvebu/base-files/etc/diag.sh index 82760fa0de..a361fa776d 100644 --- a/target/linux/mvebu/base-files/etc/diag.sh +++ b/target/linux/mvebu/base-files/etc/diag.sh @@ -1,11 +1,18 @@ #!/bin/sh -# Copyright (C) 2014 OpenWrt.org +# Copyright (C) 2014-2016 OpenWrt.org +# Copyright (C) 2016 LEDE-Project.org . /lib/functions/leds.sh . /lib/mvebu.sh get_status_led() { case $(mvebu_board_name) in + armada-385-linksys-caiman) + status_led="caiman:white:power" + ;; + armada-385-linksys-cobra) + status_led="cobra:white:power" + ;; armada-385-linksys-shelby) status_led="shelby:white:power" ;; |