aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mvebu/base-files
diff options
context:
space:
mode:
authorSungbo Eo <mans0n@gorani.run>2020-03-12 02:50:35 +0900
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-03-15 01:45:44 +0100
commitee808154571229cd3b677ea6c1ab96b122475c10 (patch)
treea851d9429901c66450dae52aa069f11dfaf6cf4e /target/linux/mvebu/base-files
parentfcd247d02b9ec00b0af846d642d50e8916d41074 (diff)
downloadupstream-ee808154571229cd3b677ea6c1ab96b122475c10.tar.gz
upstream-ee808154571229cd3b677ea6c1ab96b122475c10.tar.bz2
upstream-ee808154571229cd3b677ea6c1ab96b122475c10.zip
mvebu: use generic diag.sh
This commit removes the target-specific diag.sh script. This way, the generic one is used for the target, which uses DT-aliases to specify the LEDs used. Signed-off-by: Sungbo Eo <mans0n@gorani.run> Tested-by: Ansuel Smith <ansuelsmth@gmail.com> [wrt3200acm @ 5.4]
Diffstat (limited to 'target/linux/mvebu/base-files')
-rw-r--r--target/linux/mvebu/base-files/etc/diag.sh48
1 files changed, 0 insertions, 48 deletions
diff --git a/target/linux/mvebu/base-files/etc/diag.sh b/target/linux/mvebu/base-files/etc/diag.sh
deleted file mode 100644
index be825379f9..0000000000
--- a/target/linux/mvebu/base-files/etc/diag.sh
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2014-2016 OpenWrt.org
-# Copyright (C) 2016 LEDE-Project.org
-
-. /lib/functions.sh
-. /lib/functions/leds.sh
-
-get_status_led() {
- case $(board_name) in
- linksys,caiman)
- status_led="caiman:white:power"
- ;;
- linksys,cobra)
- status_led="cobra:white:power"
- ;;
- linksys,mamba)
- status_led="mamba:white:power"
- ;;
- linksys,rango)
- status_led="rango:white:power"
- ;;
- linksys,shelby)
- status_led="shelby:white:power"
- ;;
- linksys,venom)
- status_led="venom:blue:power"
- ;;
- esac
-}
-
-set_state() {
- get_status_led
-
- case "$1" in
- preinit)
- status_led_blink_preinit
- ;;
- failsafe)
- status_led_blink_failsafe
- ;;
- preinit_regular)
- status_led_blink_preinit_regular
- ;;
- done)
- status_led_on
- ;;
- esac
-}