aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-opie/opie-alarm/opie-alarm/01opiealarm
blob: 6a12319cdc7dd6e9ffb0f389ebc2dbff69243735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Starts opiealarm, which only runs while the iPaq sleeps 
# and wakes it up when the RTC alarm goes off.

if [ "$1" = suspend ]; then
	opiealarm -s -f
elif [ "$1" = resume ] && [ "$2" != standby ]; then
	opiealarm -r -a 120
fi

: exit 0