summaryrefslogtreecommitdiff
path: root/target/linux/ar7/base-files/etc/diag.sh
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2018-09-14 22:25:09 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2018-09-14 22:25:09 +0200
commit3362d9fb3a94d0909b79c290abc8db6abe4cca21 (patch)
tree35f9e4dfaeb691fe09fcd95b45dc440f0338a1b5 /target/linux/ar7/base-files/etc/diag.sh
parent51e1f1476f74d6788b106a066dfebd8ec6ac1bd9 (diff)
downloadmtk-20170518-3362d9fb3a94d0909b79c290abc8db6abe4cca21.zip
mtk-20170518-3362d9fb3a94d0909b79c290abc8db6abe4cca21.tar.gz
mtk-20170518-3362d9fb3a94d0909b79c290abc8db6abe4cca21.tar.bz2
target/linux : drop many arch
Diffstat (limited to 'target/linux/ar7/base-files/etc/diag.sh')
-rw-r--r--target/linux/ar7/base-files/etc/diag.sh42
1 files changed, 0 insertions, 42 deletions
diff --git a/target/linux/ar7/base-files/etc/diag.sh b/target/linux/ar7/base-files/etc/diag.sh
deleted file mode 100644
index 37eed6a..0000000
--- a/target/linux/ar7/base-files/etc/diag.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2007-2013 OpenWrt.org
-
-# This setup gives us 4.5 distinguishable states:
-#
-# (1-LED) Solid OFF: Bootloader running, or kernel hung (timer task stalled)
-# (1-LED) Solid ON: Kernel hung (timer task stalled)
-# (2-LED) Solid RED: Bootloader running, or kernel hung (timer task stalled)
-# (2-LED) Solid YELLOW: Kernel hung (timer task stalled)
-# 5Hz blink: preinit
-# 10Hz blink: failsafe
-# (1-LED) Heartbeat: normal operation
-# (2-LED) Solid GREEN: normal operation
-
-. /lib/functions/leds.sh
-
-get_status_led() {
- [ -d "/sys/class/leds/status" ] && status_led="status"
- [ -d "/sys/class/leds/power:green" ] && status_led="power:green"
-}
-
-set_state() {
- get_status_led
-
- case "$1" in
- preinit)
- status_led_set_timer 100 100
- ;;
- failsafe)
- status_led_set_timer 50 50
- ;;
- done)
- [ "$status_led" = "status" ] && {
- status_led_set_heartbeat
- }
- [ "$status_led" = "power:green" ] && {
- status_led_set_on
- led_off "power:red"
- }
- ;;
- esac
-}