1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 03:35:06 +03:00
openwrt-xburst/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh

23 lines
285 B
Bash
Raw Normal View History

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