e7b34b2b0d
this is required by the new button timeout feature Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 46471
20 lines
291 B
Bash
Executable file
20 lines
291 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ "${ACTION}" = "released" ] || exit 0
|
|
|
|
. /lib/functions.sh
|
|
|
|
logger "$BUTTON pressed for $SEEN seconds"
|
|
|
|
if [ "$SEEN" -lt 1 ]
|
|
then
|
|
echo "REBOOT" > /dev/console
|
|
sync
|
|
reboot
|
|
elif [ "$SEEN" -gt 5 ]
|
|
then
|
|
echo "FACTORY RESET" > /dev/console
|
|
jffs2reset -y && reboot &
|
|
fi
|
|
|
|
return 0
|