summaryrefslogtreecommitdiffstats
path: root/target/linux/bcm27xx/base-files/etc/diag.sh
blob: 601448fbe31a401247d892c215a31a0a5f2d9e70 (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) 2015-2016 OpenWrt.org
# Copyright (C) 2017 LEDE project

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

set_state() {
	if [ -d "/sys/class/leds/PWR" ]; then
		status_led="PWR"
	else
		status_led="ACT"
	fi

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