base-files: rework reset button script to indicate factory reset
With this change we let user know 5 seconds have passed and reset button can be released (to trigger factory reset) Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 46650
This commit is contained in:
parent
8e90f20bf7
commit
9b0516c9fc
@ -1,20 +1,27 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
[ "${ACTION}" = "released" ] || exit 0
|
|
||||||
|
|
||||||
. /lib/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
logger "$BUTTON pressed for $SEEN seconds"
|
case "$ACTION" in
|
||||||
|
pressed)
|
||||||
if [ "$SEEN" -lt 1 ]
|
return 5
|
||||||
then
|
;;
|
||||||
echo "REBOOT" > /dev/console
|
timeout)
|
||||||
sync
|
. /etc/diag.sh
|
||||||
reboot
|
set_state failsafe
|
||||||
elif [ "$SEEN" -gt 5 ]
|
;;
|
||||||
then
|
released)
|
||||||
echo "FACTORY RESET" > /dev/console
|
if [ "$SEEN" -lt 1 ]
|
||||||
jffs2reset -y && reboot &
|
then
|
||||||
fi
|
echo "REBOOT" > /dev/console
|
||||||
|
sync
|
||||||
|
reboot
|
||||||
|
elif [ "$SEEN" -gt 5 ]
|
||||||
|
then
|
||||||
|
echo "FACTORY RESET" > /dev/console
|
||||||
|
jffs2reset -y && reboot &
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
Loading…
Reference in New Issue
Block a user