From: wigyori Date: Fri, 12 Dec 2014 12:01:39 +0000 (+0000) Subject: mxs: fix automatic status led detection X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=dd52d7d8347f470936bea46fcec2e1dfec9e0661;hp=83fd43686affb1746441c1353acb7471994f0734;p=openwrt.git mxs: fix automatic status led detection Signed-off-by: Michael Heimpold Signed-off-by: Zoltan HERPAI git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43650 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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 }