You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
285 B

#!/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