mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-06 22:08:54 +00:00
1dece11487
SVN-Revision: 34698
26 lines
364 B
Bash
26 lines
364 B
Bash
#!/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
|