diff options
author | Greg Frost <gregfrost1@bigpond.com> | 2009-08-15 05:31:58 (GMT) |
---|---|---|
committer | Greg Frost <gregfrost1@bigpond.com> | 2009-08-15 05:31:58 (GMT) |
commit | ac3fcc84dfa0692cf2b11a04d7266da47c2ff89c (patch) | |
tree | f86d811d39857cab00585406f6dcade718f06d72 /abs/core-testing/linhes-scripts/mythwelcome-set-alarm.sh | |
parent | 119437a1508554051d060f88530263f3eb2204fb (diff) | |
download | linhes_pkgbuild-ac3fcc84dfa0692cf2b11a04d7266da47c2ff89c.zip linhes_pkgbuild-ac3fcc84dfa0692cf2b11a04d7266da47c2ff89c.tar.gz linhes_pkgbuild-ac3fcc84dfa0692cf2b11a04d7266da47c2ff89c.tar.bz2 |
linhes-scripts: repackage so src package contains files
Diffstat (limited to 'abs/core-testing/linhes-scripts/mythwelcome-set-alarm.sh')
-rwxr-xr-x | abs/core-testing/linhes-scripts/mythwelcome-set-alarm.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/core-testing/linhes-scripts/mythwelcome-set-alarm.sh b/abs/core-testing/linhes-scripts/mythwelcome-set-alarm.sh new file mode 100755 index 0000000..6dbd39e --- /dev/null +++ b/abs/core-testing/linhes-scripts/mythwelcome-set-alarm.sh @@ -0,0 +1,23 @@ +#!/bin/sh +#$1 is the first argument to the script. It is the time in seconds since 1970 +#This is defined in mythwelcome with the time_t argument + +# Configure mythwelcome --setup page: +# Command to Set Wakeup Time: sudo sh -c "/usr/LH/bin/mythwelcome-set-alarm.sh $time" +# Wakeup Time Format: time_t +# nvram-wakeup Restart Command: Leave this blank +# Command to reboot: sudo /sbin/reboot +# Command to shutdown: sudo /sbin/poweroff +# Command to run Xterm: xterm +# Command to start the Frontend: /usr/bin/mythfrontend -l /var/log/mythtv/mythfrontend.log + +# Configure mythtv-setup Shutdown/Wakeup Options page: +# Idletimeout (secs): any value greater that 0 +# Wakeup time format: yyyy-MM-dd:hh:mm +# Set wakeup time command: /usr/bin/mythshutdown --setwakeup $time +# Server Halt command: /usr/bin/mythshutdown --shutdown +# Pre shutdown check command: /usr/bin/mythshutdown --check + +echo 0 > /sys/class/rtc/rtc0/wakealarm #this clears your alarm +echo $1 > /sys/class/rtc/rtc0/wakealarm #this writes your alarm +cat /proc/driver/rtc > /var/log/wake_alarm |