openwrtv4/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh
2011-11-12 23:39:56 +00:00

22 lines
285 B
Bash

#!/bin/sh
[ "${ACTION}" = "released" ] || exit 0
. /lib/functions.sh
case "${BUTTON}" in
BTN_0)
logger "reset pressed"
sync
reboot
;;
BTN_1)
logger "factory pressed"
jffs2_mark_erase "rootfs_data"
sync
reboot
;;
*)
logger "unknown button ${BUTTON}"
;;
esac