aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/pistachio/base-files/etc/diag.sh
blob: 7b556498d67388eb93ea68fa678b930070c7d06f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
#
# Copyright (C) 2017 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

. /lib/functions/leds.sh
. /lib/pistachio.sh

status_led="marduk:red:heartbeat"

set_state() {

	case "$1" in
	preinit)
		status_led_blink_preinit
		;;
	failsafe)
		status_led_blink_failsafe
		;;
	upgrade | \
	preinit_regular)
		status_led_blink_preinit_regular
		;;
	done)
		status_led_on
		;;
	esac
}