diff options
author | Zoltan HERPAI <wigyori@uid0.hu> | 2014-12-12 12:01:39 +0000 |
---|---|---|
committer | Zoltan HERPAI <wigyori@uid0.hu> | 2014-12-12 12:01:39 +0000 |
commit | a62f9307cdd2f6e53524018c55351047211282cf (patch) | |
tree | 63af0a5eb7eef71253f26e5850cb28039cd3827b /target/linux/mxs/base-files/etc | |
parent | 9cdcd5cf3027fb153bce93e53a6b3010e15703c2 (diff) | |
download | upstream-a62f9307cdd2f6e53524018c55351047211282cf.tar.gz upstream-a62f9307cdd2f6e53524018c55351047211282cf.tar.bz2 upstream-a62f9307cdd2f6e53524018c55351047211282cf.zip |
mxs: fix automatic status led detection
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43650 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/mxs/base-files/etc')
-rw-r--r-- | target/linux/mxs/base-files/etc/diag.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/mxs/base-files/etc/diag.sh b/target/linux/mxs/base-files/etc/diag.sh index e48fa96af6..683e1234d5 100644 --- a/target/linux/mxs/base-files/etc/diag.sh +++ b/target/linux/mxs/base-files/etc/diag.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2013 OpenWrt.org +# Copyright (C) 2013-2014 OpenWrt.org . /lib/functions/leds.sh . /lib/mxs.sh @@ -13,7 +13,7 @@ get_status_led() { status_led="green" ;; *) - status_led=$(cd /sys/class/leds && ls -1 *:status 2> /dev/null | head -n 1) + status_led=$(cd /sys/class/leds && ls -1d *:status 2> /dev/null | head -n 1) ;; esac } |