aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/kirkwood/base-files/etc
diff options
context:
space:
mode:
authorPawel Dembicki <paweldembicki@gmail.com>2020-02-04 17:26:47 +0100
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-02-22 14:25:25 +0100
commitae67f5ffae69119eef6509a48b111164a5842346 (patch)
treeedd1669fd7decb13a724f5ffdba90db937c99ee1 /target/linux/kirkwood/base-files/etc
parenta9b5473c92c01bce9b5f42659b0271bd141e3428 (diff)
downloadupstream-ae67f5ffae69119eef6509a48b111164a5842346.tar.gz
upstream-ae67f5ffae69119eef6509a48b111164a5842346.tar.bz2
upstream-ae67f5ffae69119eef6509a48b111164a5842346.zip
kirkwood: 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. Generic diag.sh allow to use different LEDs to indicate different states. Non-red status LEDs for indicating boot and a running system. Where possible, the red or orange LEDs are used to indicate failsafe mode and a running upgrade. Compile-tested: all target devices. Run-tested: CheckPoint L-50 Signed-off-by: Pawel Dembicki <paweldembicki@gmail.com> [remove unrelated cosmetic changes, rename some labels, add pogo_e02] Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/kirkwood/base-files/etc')
-rwxr-xr-xtarget/linux/kirkwood/base-files/etc/diag.sh55
1 files changed, 0 insertions, 55 deletions
diff --git a/target/linux/kirkwood/base-files/etc/diag.sh b/target/linux/kirkwood/base-files/etc/diag.sh
deleted file mode 100755
index fc61846c11..0000000000
--- a/target/linux/kirkwood/base-files/etc/diag.sh
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2014 OpenWrt.org
-
-. /lib/functions.sh
-. /lib/functions/leds.sh
-
-get_status_led() {
- case $(board_name) in
- cisco,on100)
- status_led="on100:green:health"
- ;;
- cloudengines,pogoe02)
- status_led="pogo_e02:orange:fault"
- ;;
- cloudengines,pogoplugv4)
- status_led="pogoplugv4:green:health"
- ;;
- iom,ix2-200)
- status_led="status:white:power_led"
- ;;
- linksys,audi)
- status_led="audi:green:power"
- ;;
- linksys,viper)
- status_led="viper:white:health"
- ;;
- seagate,dockstar|\
- seagate,goflexhome|\
- seagate,goflexnet)
- status_led="status:orange:fault"
- ;;
- zyxel,nsa310b)
- status_led="nsa310:green:sys"
- ;;
- 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
-}