aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/base-files/etc/diag.sh
blob: f9aa8094058bb50b090f2d4a43b4a638d6b52613 (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
32
#!/bin/sh
# Copyright (C) 2007-2013 OpenWrt.org

. /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_blink_preinit
		;;
	failsafe)
		status_led_blink_failsafe
		;;
	preinit_regular)
		status_led_blink_preinit_regular
		;;
	done)
		status_led_on

		[ "$status_led" = "power:green" ] && {
			led_off "power:red"
		}
		;;
	esac
}