summaryrefslogtreecommitdiff
path: root/usr.sbin/apm/zzz.sh
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/apm/zzz.sh')
-rw-r--r--usr.sbin/apm/zzz.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/usr.sbin/apm/zzz.sh b/usr.sbin/apm/zzz.sh
deleted file mode 100644
index 770815358109..000000000000
--- a/usr.sbin/apm/zzz.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-#
-# Suspend the system using either ACPI or APM.
-# For APM, "apm -z" will be issued.
-# For ACPI, the configured suspend state will be looked up, checked to see
-# if it is supported, and "acpiconf -s <state>" will be issued.
-#
-# Mark Santcroos <marks@ripe.net>
-#
-# $FreeBSD$
-
-PATH=/sbin:/usr/sbin:/usr/bin:/bin
-
-ACPI_SUSPEND_STATE=hw.acpi.suspend_state
-ACPI_SUPPORTED_STATES=hw.acpi.supported_sleep_state
-APM_SUSPEND_DELAY=machdep.apm_suspend_delay
-
-# Check for ACPI support
-if sysctl $ACPI_SUSPEND_STATE >/dev/null 2>&1; then
- # Get configured suspend state
- SUSPEND_STATE=`sysctl $ACPI_SUSPEND_STATE | sed 's|^.*: S||'`
-
- # Get list of supported suspend states
- SUPPORTED_STATES=`sysctl $ACPI_SUPPORTED_STATES | sed 's|^.*: ||'`
-
- # Check if the configured suspend state is supported by the system
- if echo $SUPPORTED_STATES | grep S$SUSPEND_STATE >/dev/null; then
- # execute ACPI style suspend command
- exec acpiconf -s $SUSPEND_STATE
- else
- echo -n "Requested suspend state S$ACPI_SUSPEND_STATE "
- echo -n "is not supported. "
- echo "Supported states: $ACPI_SUPPORTED_STATES"
- fi
-# Check for APM support
-elif sysctl $APM_SUSPEND_DELAY >/dev/null 2>&1; then
- # Execute APM style suspend command
- exec apm -z
-else
- echo "Error: no ACPI or APM suspend support found."
-fi
-
-exit 1