aboutsummaryrefslogtreecommitdiff
path: root/package/base-files/files/lib/preinit/10_indicate_failsafe
blob: 7bf5e029e42ffaf9cce29924352d4b6faeb4e106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2010 Vertical Communications

# commands for emitting messages to network in failsafe mode

indicate_failsafe_led () {
	set_state failsafe
}

indicate_failsafe() {
	[ "$pi_preinit_no_failsafe" = "y" ] && return
	echo "- failsafe -"
	preinit_net_echo "Entering Failsafe!\n"
	indicate_failsafe_led
}

boot_hook_add failsafe indicate_failsafe