1 .\" Copyright (c) 1999 Mitsuru IWASAKI <iwasaki@FreeBSD.org>
2 .\" Copyright (c) 1999 KOIE Hidetaka <koie@suri.co.jp>
3 .\" Copyright (c) 1999 Yoshihiko SARUMARU <mistral@imasy.or.jp>
4 .\" Copyright (c) 1999 Norihiro Kumagai <kuma@nk.rim.or.jp>
5 .\" All rights reserved.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .Nd Advanced Power Management monitor daemon
44 monitors the occurrence of the specified Advanced Power Management
46 events and, if one of the events occurs, it executes the sequence of
47 commands corresponding to the event.
48 Only the events specified in the
49 configuration file are notified to
51 all other events are ignored.
52 For each event posted by the APM BIOS,
54 invokes the sequence of commands specified in the configuration file.
57 is running with monitoring suspend/standby requests,
58 the kernel will not process those requests.
59 Therefore, if you wish action to be taken when these events
60 occur, you need to explicitly configure the appropriate commands or
61 built-in functions in the configuration file.
65 utility recognizes the following runtime options:
66 .Bl -tag -width f_file
71 to execute in the foreground instead of in daemon mode.
73 Specifies a different configuration file
75 to be used in place of the default
80 to simulate a POWERSTATECHANGE event when a power state change is detected
81 (AC_POWER_STATE) but the bios of the laptop does not report it.
82 This enables you to do things like dimming the LCD backlight when you unplug
90 starts, it reads the configuration file
93 and notifies the set of events to be monitored to the APM device driver.
94 When it terminates, the APM device driver automatically cancels
101 it will reread its configuration file and
102 notify the APM device driver of any changes to its configuration.
106 utility uses the device
110 requests for monitoring events and for controlling the APM system.
111 This device file is opened exclusively, so only a single
113 process can be running at any time.
117 receives an APM event, it forks a child process to execute the
118 commands specified in the configuration file and then continues
119 listening for more events.
120 The child process executes the commands
121 specified, one at a time and in the order that they are listed.
125 is processing the command list for SUSPEND/STANDBY requests, the APM kernel
126 device driver issues notifications to APM BIOS once per second so that the
127 BIOS knows that there are still some commands pending, and that it should not
128 complete the request just yet.
132 utility creates the file
133 .Pa /var/run/apmd.pid ,
134 and stores its process
136 This can be used to kill or reconfigure
138 .Sh CONFIGURATION FILE
141 configuration file is quite simple.
144 apm_event SUSPENDREQ {
145 exec "sync && sync && sync";
153 to receive the APM event
155 (which may be posted by an LCD close), run the
157 command 3 times and wait for a while, then execute
158 .Nm zzz ( Ns Nm apm Fl z )
159 to put the system in the suspend state.
162 The apm_event keyword
163 .Bd -ragged -offset indent
165 is the keyword which indicates the start of configuration for
170 .Bd -ragged -offset indent
171 If you wish to execute the same commands for different events, the
172 event names should be delimited by a comma.
177 - Events ignored by the kernel if
181 .Bl -tag -width USERSUSPENDREQ -compact -offset indent
185 should include sync in the command list,
187 should include sync in the command list,
189 only zzz should be specified in the command list.
194 after kernel handling:
196 .Bl -tag -width USERSUSPENDREQ -compact -offset indent
202 .It CAPABILITIESCHANGE
205 Other events will not be sent to
211 .Bd -ragged -offset indent
212 In the example above, the three lines beginning with
214 are commands for the event.
215 Each line should be terminated with a semicolon.
216 The command list for the event should be enclosed by
224 for double-quotation enclosed command execution, just as with
226 Each command is executed in order until the end of
227 the list is reached or a command finishes with a non-zero status code.
230 utility will report any failed command's status code via
232 and will then reject the request event posted by the APM BIOS.
236 .Bd -ragged -offset indent
239 built-in functions instead of command lines.
240 A built-in function name should be terminated with a semicolon,
241 just as with a command line.
242 The following built-in functions are currently supported:
245 .Bl -tag -width ".It - reject"
247 Reject last request posted by APM BIOS.
248 This can be used to reject
249 a SUSPEND request when the LCD is closed and put the system in a
250 STANDBY state instead.
256 .Bl -tag -width /etc/apmd.conf -compact
257 .It Pa /etc/apmd.conf
259 .It Pa /var/run/apmd.pid
262 Sample configuration commands include:
264 apm_event SUSPENDREQ {
265 exec "/etc/rc.suspend apm suspend";
268 apm_event USERSUSPENDREQ {
269 exec "sync && sync && sync";
274 apm_event NORMRESUME {
275 exec "/etc/rc.resume apm suspend";
278 apm_event STANDBYRESUME {
279 exec "/etc/rc.resume apm standby";
282 # resume event configuration for serial mouse users by
283 # reinitializing a moused(8) connected to a serial port.
285 #apm_event NORMRESUME {
286 # exec "kill -HUP `cat /var/run/moused.pid`";
289 # suspend request event configuration for ATA HDD users:
290 # execute standby instead of suspend.
292 #apm_event SUSPENDREQ {
294 # exec "sync && sync && sync";
308 .An Mitsuru IWASAKI Aq Mt iwasaki@FreeBSD.org
309 .An KOIE Hidetaka Aq Mt koie@suri.co.jp
312 Some contributions made by
313 .An Warner Losh Aq Mt imp@FreeBSD.org ,
314 .An Hiroshi Yamashita Aq Mt bluemoon@msj.biglobe.ne.jp ,
315 .An Yoshihiko SARUMARU Aq Mt mistral@imasy.or.jp ,
316 .An Norihiro Kumagai Aq Mt kuma@nk.rim.or.jp ,
317 .An NAKAGAWA Yoshihisa Aq Mt nakagawa@jp.FreeBSD.org ,
319 .An Nick Hilliard Aq Mt nick@foobar.org .