mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-08 14:03:06 +00:00
19 lines
277 B
Plaintext
19 lines
277 B
Plaintext
|
#!/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
|
||
|
firstboot && reboot &
|
||
|
fi
|