mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 11:06:16 +02:00
23 lines
285 B
Bash
23 lines
285 B
Bash
|
#!/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
|