aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/lib/functions/leds.sh
diff options
context:
space:
mode:
Diffstat (limited to 'package/base-files/files/lib/functions/leds.sh')
-rw-r--r--package/base-files/files/lib/functions/leds.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/files/lib/functions/leds.sh b/package/base-files/files/lib/functions/leds.sh
index 43b2fe02ed..14baeb37b4 100644
--- a/package/base-files/files/lib/functions/leds.sh
+++ b/package/base-files/files/lib/functions/leds.sh
@@ -18,7 +18,8 @@ get_dt_led() {
[ -n "$ledpath" ] && \
label=$(cat "$ledpath/label" 2>/dev/null) || \
- label=$(cat "$ledpath/chan-name" 2>/dev/null)
+ label=$(cat "$ledpath/chan-name" 2>/dev/null) || \
+ label=$(basename "$ledpath")
echo "$label"
}