summaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh
blob: 1d1467adef3039802bc9ebec7881afe0cb0d1f58 (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
	BTN_0)
		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