summaryrefslogtreecommitdiffstats
path: root/etc/rc.resume
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2003-12-30 17:28:06 +0000
committernjl <njl@FreeBSD.org>2003-12-30 17:28:06 +0000
commitdc92f60c73455d47a4f12fcc4033cda71d5e3010 (patch)
tree7df2978487882efbbd26988ce7aa085b9147d6fc /etc/rc.resume
parentaf0a8468003fa6f8023d5ca404fc9a2b2a276057 (diff)
downloadFreeBSD-src-dc92f60c73455d47a4f12fcc4033cda71d5e3010.zip
FreeBSD-src-dc92f60c73455d47a4f12fcc4033cda71d5e3010.tar.gz
Add support for /etc/rc.suspend and /etc/rc.resume for ACPI. They are
called directly from acpiconf(8). Change both scripts to take a subsystem (apm|acpi) and sleep level (suspend,standby|1-5) argument.
Diffstat (limited to 'etc/rc.resume')
-rwxr-xr-xetc/rc.resume16
1 files changed, 14 insertions, 2 deletions
diff --git a/etc/rc.resume b/etc/rc.resume
index ee1b82c..84aa022 100755
--- a/etc/rc.resume
+++ b/etc/rc.resume
@@ -29,10 +29,18 @@
# sample run command file for APM Resume Event
+if [ $# -ne 2 ]; then
+ echo "Usage: $0 [apm|acpi] [resume|1-5]"
+ exit 1
+fi
+
+subsystem=$1
+state=$2
+
if [ -r /var/run/rc.suspend.pid ]; then
kill -9 `cat /var/run/rc.suspend.pid`
rm -f /var/run/rc.suspend.pid
- echo 'rc.suspend is killed'
+ echo 'rc.resume: killed rc.suspend that was still around'
fi
# Turns on a power supply of a card in the slot inactivated.
@@ -40,7 +48,11 @@ fi
# pccardq | awk -F '~' '$5 == "inactive" \
# { printf("pccardc power %d 1", $1); }' | sh
-logger -t apmd resumed at `date +'%Y%m%d %H:%M:%S'`
+# UHCI has trouble resuming so we just load/unload it. You
+# should add any other kernel modules you want reloaded here.
+# kldload usb
+
+logger -t $subsystem resumed at `date +'%Y%m%d %H:%M:%S'`
sync && sync && sync
exit 0
OpenPOWER on IntegriCloud