summaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh
blob: e6dcb347f1a72adf8ecdec55e13dc8898bf13e11 (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
#!/bin/sh

[ "${ACTION}" = "released" ] || exit 0

. /lib/functions.sh

case "${BUTTON}" in
	reset)
		logger "reset pressed"
		echo "REBOOT" > /dev/console
		sleep 3
		sync
		reboot
		;;
	BTN_1)
		logger "factory pressed"
		echo "FACTORY RESET" > /dev/console
		jffs2_mark_erase "rootfs_data"
		sync
		reboot
		;;
	*)
		logger "unknown button ${BUTTON}"
		;;
esac