summaryrefslogtreecommitdiff
path: root/src/pm-action.in
blob: 3fe476bc7f9f15c27720b903b0c64086ba0148fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/sh
#
# Simple suspend script
#
# Copyright 2006 Red Hat, Inc.
#
# Based on work from:
#    Bill Nottingham <notting@redhat.com>
#    Peter Jones <pjones@redhat.com>
#    David Zeuthen <davidz@redhat.com>
#    Richard Hughes <richard@hughsie.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#

# The rule here? Simplicity.

help()
{
	echo "${0##*/} [options]"
	echo
	echo "Options can change how the supend or hibernate is done."
	echo
	echo "Possible actions are:"
	echo
	echo "  --quirk-dpms-on"
	echo "  --quirk-dpms-suspend"
	echo "  --quirk-radeon-off"
	echo "  --quirk-reset-brightness"
	echo "  --quirk-s3-bios"
	echo "  --quirk-s3-mode"
	echo "  --quirk-vbe-post"
	echo "  --quirk-vbemode-restore"
	echo "  --quirk-vbestate-restore"
	echo "  --quirk-vga-mode3"
	echo "  --quirk-none"
	exit 0
}

if [ -n "$EUID" -a "$EUID" != "0" ]; then
	echo This utility may only be run by the root user. 1>&2
	exit 1
fi

# Get the command line options
while [ $# -gt 0 ]
do
	[ "${1##--}" = "$1" ] && break #if this matches, it is not an option!
	[ "$1" = "--help" ] && help
	case "${1##--quirk-}" in # just quirks, please
		dpms-on) 	  export QUIRK_DPMS_ON="true" ;;
		dpms-suspend) 	  export QUIRK_DPMS_SUSPEND="true" ;;
		radeon-off) 	  export QUIRK_RADEON_OFF="true" ;;
		reset-brightness) export QUIRK_RESET_BRIGHTNESS="true" ;;
		s3-bios) 	  export QUIRK_S3_BIOS="true" ;;
		s3-mode) 	  export QUIRK_S3_MODE="true" ;;
		vbe-post) 	  export QUIRK_VBE_POST="true" ;;
		vbemode-restore)  export QUIRK_VBEMODE_RESTORE="true" ;;
		vbestate-restore) export QUIRK_VBESTATE_RESTORE="true" ;;
		vga-mode3) 	  export QUIRK_VGA_MODE_3="true" ;;
		none) 		  export QUIRK_NONE="true" ;;
		*) continue ;;
	esac
	shift
done

export PM_FUNCTIONS="@PM-UTILS-LIBDIR@/functions"
. "${PM_FUNCTIONS}"

ACTION="$(echo ${0##*pm-} |tr - _)"

case "$ACTION" in
	suspend) 	REVERSE=resume ;;
	hibernate) 	REVERSE=thaw ;;
	suspend_hybrid) REVERSE=resume ;;
	*)		echo "Don't know how to ${ACTION}."
			exit 1 ;;
esac

export PM_CMDLINE="$@"

pm_main "${ACTION}" "${REVERSE}"