]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/devd/devd.conf.5
Document the PMU system
[FreeBSD/FreeBSD.git] / sbin / devd / devd.conf.5
1 .\"
2 .\" Copyright (c) 2002 M. Warner Losh <imp@FreeBSD.org>
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. The name of the author may not be used to endorse or promote products
10 .\"    derived from this software without specific prior written permission.
11 .\"
12 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
13 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
14 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
15 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
16 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
17 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
18 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
19 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
20 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
21 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
22 .\" SUCH DAMAGE.
23 .\"
24 .\" $FreeBSD$
25 .\"
26 .\" The section on comments was taken from named.conf.5, which has the
27 .\" following copyright:
28 .\" Copyright (c) 1999-2000 by Internet Software Consortium
29 .\"
30 .\" Permission to use, copy, modify, and distribute this software for any
31 .\" purpose with or without fee is hereby granted, provided that the above
32 .\" copyright notice and this permission notice appear in all copies.
33 .\"
34 .\" THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
35 .\" ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
36 .\" OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
37 .\" CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
38 .\" DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
39 .\" PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
40 .\" ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
41 .\" SOFTWARE.
42 .\"
43 .Dd August 18, 2020
44 .Dt DEVD.CONF 5
45 .Os
46 .Sh NAME
47 .Nm devd.conf
48 .Nd configuration file for
49 .Xr devd 8
50 .Sh DESCRIPTION
51 .Ss General Syntax
52 A
53 .Xr devd 8
54 configuration consists of two general features, statements
55 and comments.
56 All statements end with a semicolon.
57 Many statements can contain substatements, which are also
58 terminated with a semicolon.
59 .Pp
60 The following statements are supported:
61 .Bl -tag -width ".Ic options"
62 .It Ic attach
63 Specifies various matching criteria and actions to perform when
64 a newly attached device matches said criteria.
65 .It Ic detach
66 Specifies various matching criteria and actions to perform when
67 a newly detached device matches said criteria.
68 .It Ic nomatch
69 Specifies various matching criteria and actions to perform when
70 no device driver currently loaded in the kernel claims a (new)
71 device.
72 .It Ic notify
73 Specifies various matching criteria and actions to perform when the kernel
74 sends an event notification to userland.
75 .It Ic options
76 Specifies various options and parameters for the operation of
77 .Xr devd 8 .
78 .El
79 .Pp
80 Statements may occur in any order in the configuration file, and may be
81 repeated as often as required.
82 Further details on the syntax and meaning of each statement and their
83 substatements are explained below.
84 .Pp
85 Each statement, except
86 .Ic options
87 has a priority (an arbitrary number) associated with it, where
88 .Ql 0
89 is defined as the lowest priority.
90 If two statements match the same event, only the action of the statement with
91 highest priority will be executed.
92 In this way generic statements can be overridden for devices or
93 notifications that require special attention.
94 .Pp
95 The general syntax of a statement is:
96 .Bd -literal -offset indent
97 statement priority {
98         substatement "value";
99         ...
100         substatement "value";
101 };
102 .Ed
103 .Ss Sub-statements
104 The following sub-statements are supported within the
105 .Ic options
106 statement.
107 .Bl -tag -width ".Ic directory"
108 .It Ic directory Qq Ar /some/path ;
109 Adds the given directory to the list of directories from which
110 .Xr devd 8
111 will read all files named "*.conf" as further
112 configuration files.
113 Any number of
114 .Ic directory
115 statements can be used.
116 .It Ic pid-file Qq Pa /var/run/devd.pid ;
117 Specifies PID file.
118 .It Ic set Ar regexp-name Qq Ar (some|regexp) ;
119 Creates a regular expression and assigns it to the variable
120 .Ar regexp-name .
121 The variable is available throughout the rest of
122 the configuration file.
123 If the string begins with
124 .Ql \&! ,
125 it matches if the regular expression formed by the rest of the string
126 does not match.
127 All regular expressions have an implicit
128 .Ql ^$
129 around them.
130 .El
131 .Pp
132 The following sub-statements are supported within the
133 .Ic attach
134 and
135 .Ic detach
136 statements.
137 .Bl -tag -width ".Ic directory"
138 .It Ic action Qq Ar command ;
139 Command to execute upon a successful match.
140 Example
141 .Dq Li "/etc/pccard_ether $device-name start" .
142 .It Ic class Qq Ar string ;
143 This is shorthand for
144 .Dq Ic match Qo Li class Qc Qq Ar string .
145 .It Ic device-name Qq string ;
146 This is shorthand for
147 .Dq Ic match Qo Li device-name Qc Qq Ar string .
148 This matches a device named
149 .Ar string ,
150 which is allowed to be a regular expression or a variable previously created
151 containing a regular expression.
152 The
153 .Dq Li device-name
154 variable
155 is available for later use with the
156 .Ic action
157 statement.
158 .It Ic match Qo Ar variable Qc Qq Ar value ;
159 Matches the content of
160 .Ar value
161 against
162 .Ar variable ;
163 the content of
164 .Ar value
165 may be a regular expression.
166 Not required during
167 .Ic attach
168 nor
169 .Ic detach
170 events since the
171 .Ic device-name
172 statement takes care of all device matching.
173 For a partial list of variables, see below.
174 .It Ic media-type Qq Ar string ;
175 For network devices,
176 .Ic media-type
177 will match devices that have the given media type.
178 Valid media types are:
179 .Dq Li Ethernet ,
180 .Dq Li Tokenring ,
181 .Dq Li FDDI ,
182 .Dq Li 802.11 ,
183 and
184 .Dq Li ATM .
185 .It Ic subdevice Qq Ar string ;
186 This is shorthand for
187 .Dq Ic match Qo Li subdevice Qc Qq Ar string .
188 .El
189 .Pp
190 The following sub-statements are supported within the
191 .Ic nomatch
192 statement.
193 .Bl -tag -width ".Ic directory"
194 .It Ic action Qq Ar command ;
195 Same as above.
196 .It Ic match Qo Ar variable Qc Qq Ar value ;
197 Matches the content of
198 .Ar value
199 against
200 .Ar variable ;
201 the content of
202 .Ar value
203 may be a regular expression.
204 For a partial list of variables, see below.
205 .El
206 .Pp
207 The following sub-statements are supported within the
208 .Ic notify
209 statement.
210 The
211 .Dq Li notify
212 variable is available inside this statement and contains, a value, depending
213 on which system and subsystem that delivered the event.
214 .Bl -tag -width ".Ic directory"
215 .It Ic action Qq Ar command ;
216 Command to execute upon a successful match.
217 Example
218 .Dq Li "/etc/rc.d/power_profile $notify" .
219 .It Ic match Qo Ar system | subsystem | type | notify Qc Qq Ar value ;
220 Any number of
221 .Ic match
222 statements can exist within a
223 .Ic notify
224 statement;
225 .Ar value
226 can be either a fixed string or a regular expression.
227 Below is a list of available systems, subsystems, and types.
228 .It Ic media-type Qq Ar string ;
229 See above.
230 .El
231 .Ss Variables that can be used with the match statement
232 A partial list of variables and their possible values that can be used together
233 with the
234 .Ic match
235 statement.
236 The variables are published by the bus based on characteristics of the device
237 that generated the event (for device events).
238 Variables for other classes of events are dependent on those events.
239 .Pp
240 .Bl -tag -width ".Li manufacturer" -compact
241 .It Ic Variable
242 .Ic Description
243 .It Li *
244 The entire message from the current event.
245 .It Li _
246 The entire message from the current event, after the initial type character.
247 .It Li timestamp
248 The time this event was processed, in seconds since 1970 dot fraction.
249 .It Li bus
250 Device name of parent bus.
251 .It Li cdev
252 Device node path if one is created by the
253 .Xr devfs 5
254 filesystem.
255 .It Li class
256 Device class.
257 .It Li comm
258 Executable name (kernel).
259 .It Li core
260 Path to core file (kernel).
261 .It Li device
262 Device ID.
263 .It Li devclass
264 Device Class (USB).
265 .It Li devsubclass
266 Device Sub-class (USB).
267 .It Li device-name
268 Name of attached/detached device.
269 .It Li endpoints
270 Endpoint count (USB).
271 .It Li function
272 Card functions.
273 .It Li interface
274 Interface ID (USB).
275 .It Li intclass
276 Interface Class (USB).
277 .It Li intprotocol
278 Interface Protocol (USB).
279 .It Li intsubclass
280 Interface Sub-class (USB).
281 .It Li jail
282 Jail name for the process triggering the rule (RCTL).
283 .It Li mode
284 Peripheral mode (USB).
285 .It Li notify
286 Match the value of the
287 .Dq Li notify
288 variable.
289 .It Li parent
290 Parent device.
291 .It Li pid
292 PID of the process triggering the rule (RCTL).
293 .It Li port
294 Hub port number (USB).
295 .It Li product
296 Product ID (USB).
297 .It Li release
298 Hardware revision (USB).
299 .It Li ruid
300 Real UID of the process triggering the rule (RCTL).
301 .It Li rule
302 Rule (RCTL).
303 .It Li sernum
304 Serial Number (USB).
305 .It Li slot
306 Card slot.
307 .It Li subvendor
308 Sub-vendor ID (PCI).
309 .It Li subdevice
310 Sub-device ID (PCI).
311 .It Li subsystem
312 Matches a subsystem of a system, see below.
313 .It Li system
314 Matches a system type, see below.
315 .It Li type
316 Type of notification, see below.
317 .It Li vendor
318 Vendor ID.
319 .El
320 .Ss Notify matching
321 A partial list of systems, subsystems, and types used within the
322 .Ic notify
323 mechanism.
324 .\"
325 .\" Please keep these tables sorted. Also, please use the same parameters
326 .\" for each of the tables so that things line up in columns nicely.
327 .\" Please do not omit the type column for notifiers that omit it.
328 .Pp
329 .Bl -column "System" "Subsystem" "1234567" -compact
330 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
331 .It Li ACPI Ta Ta Ta
332 Events related to the ACPI Sybsystem.
333 .It Li ACPI Ta Li ACAD Ta Ta
334 AC line state ($notify=0x00 is offline, 0x01 is online).
335 .It Li ACPI Ta Li Button Ta Ta
336 Button state ($notify=0x00 is power, 0x01 is sleep).
337 .It Li ACPI Ta Li CMBAT Ta Ta
338 Battery events.
339 .It Li ACPI Ta Li Dock Ta Ta
340 Dock state ($notify=0x00 is undocked, 0x01 is docked).
341 .It Li ACPI Ta Li Lid Ta Ta
342 Lid state ($notify=0x00 is closed, 0x01 is open).
343 .It Li ACPI Ta Li PROCESSOR Ta Ta
344 Processor state/configuration ($notify=0x81 is a change in available Cx states).
345 .It Li ACPI Ta Li Resume Ta Ta
346 Resume notification.
347 .It Li ACPI Ta Li Suspend Ta Ta
348 Suspend notification.
349 .It Li ACPI Ta Li Thermal Ta Ta
350 Thermal zone events.
351 .El
352 .Pp
353 .Bl -column "System" "Subsystem" "1234567" -compact
354 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
355 .It Li CAM Ta Ta Ta
356 Events related to the
357 .Xr cam 4
358 system.
359 .It Li CAM Ta Li periph Ta Ta
360 Events related to peripheral devices.
361 .It Li CAM Ta Li periph Ta Li error Ta
362 Generic errors.
363 .It Li CAM Ta Li periph Ta Li timeout Ta
364 Command timeouts.
365 .El
366 .Pp
367 .Bl -column "System" "Subsystem" "1234567" -compact
368 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
369 .It Li CARP Ta Ta Ta
370 Events related to the
371 .Xr carp 4
372 protocol.
373 .It CARP Ta Ar vhid@inet Ta Ta
374 The
375 .Dq subsystem
376 contains the actual CARP vhid and the name of the network interface
377 on which the event took place.
378 .It CARP Ta Ar vhid@inet Ta MASTER Ta
379 Node become the master for a virtual host.
380 .It CARP Ta Ar vhid@inet Ta BACKUP Ta
381 Node become the backup for a virtual host.
382 .El
383 .Pp
384 .Bl -column "System" "Subsystem" "1234567" -compact
385 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
386 .It Li coretemp Ta Ta Ta
387 Events related to the
388 .Xr coretemp 4
389 device.
390 .It Li coretemp Ta Li Thermal Ta Ta
391 Notification that the CPU core has reached critical temperature.
392 .It Li coretemp Ta Li Thermal Ta Li temperature Ta
393 String containing the temperature of the core that has become too hot.
394 .El
395 .Pp
396 .Bl -column "System" "Subsystem" "1234567" -compact
397 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
398 .It Li IFNET
399 .It Li IFNET Ta Ar inet Ta Ta
400 The
401 .Dq subsystem
402 is the actual name of the network interface on which the event
403 took place.
404 .It Li IFNET Ta Ar inet Ta Li LINK_UP Ta
405 Carrier status changed to UP.
406 .It Li IFNET Ta Ar inet Ta Li LINK_DOWN Ta
407 Carrier status changed to DOWN.
408 .It Li IFNET Ta Ar inet Ta Li ATTACH Ta
409 The network interface is attached to the system.
410 .It Li IFNET Ta Ar inet Ta Li DETACH Ta
411 The network interface is detached from the system.
412 .El
413 .Pp
414 .Bl -column "System" "Subsystem" "1234567" -compact
415 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
416 .It Li DEVFS
417 .It Li DEVFS Ta Li CDEV Ta Li CREATE Ta
418 The
419 .Xr devfs 5
420 node is created.
421 .It Li DEVFS Ta Li CDEV Ta Li DESTROY Ta
422 The
423 .Xr devfs 5
424 node is destroyed.
425 .El
426 .Pp
427 .Bl -column "System" "Subsystem" "1234567" -compact
428 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
429 .It Li GEOM Ta Ta Ta
430 Events related to the
431 .Xr geom 4
432 framework.
433 The difference compared to
434 .Li DEVFS
435 is that
436 .Li GEOM
437 only includes disk-like devices.
438 .It Li GEOM Ta Li DEV Ta Li CREATE Ta
439 A
440 .Xr geom 4
441 provider is created.
442 .It Li GEOM Ta Li DEV Ta Li DESTROY Ta
443 A
444 .Xr geom 4
445 provider is destroyed.
446 .It Li GEOM Ta Li DEV Ta Li GEOM::physpath Ta
447 The physical path of a device has changed.
448 .It Li GEOM Ta Li DEV Ta Li GEOM::rotation_rate Ta
449 The roation rate of the disk has changed.
450 .It Li GEOM Ta Li DEV Ta Li MEDIACHANGE Ta
451 Physical media has changed.
452 .It Li GEOM Ta Li DEV Ta Li SIZECHANGE Ta
453 A
454 .Xr geom 4
455 provider size has changed.
456 .El
457 .Pp
458 .Bl -column "System" "Subsystem" "1234567" -compact
459 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
460 .It Li kern Ta Li power Ta Li resume Ta
461 Notification that the system has woken from the suspended state.
462 .El
463 .Pp
464 .Pp
465 .Bl -column "System" "Subsystem" "1234567" -compact
466 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
467 .It Li kernel Ta Li signal Ta Li coredump Ta
468 Notification that a process has crashed and dumped core.
469 .El
470 .Pp
471 .Bl -column "System" "Subsystem" "1234567" -compact
472 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
473 .It Li PMU Ta Ta Ta
474 Notification of events from various types of Power Management Units.
475 .It Li PMU Ta Li "AC" Ta Ta
476 Notifications of AC power related events.
477 .It Li PMU Ta Li "AC" Ta Li overvoltage Ta
478 An over voltage ondition was detected on the AC power line.
479 .It Li PMU Ta Li "AC" Ta Li plugged Ta
480 Power has been applied to the AC power line.
481 .It Li PMU Ta Li "AC" Ta Li unplugged Ta
482 Power has been removed from the AC power line.
483 .It Li PMU Ta Li Battery Ta Ta
484 .It Li PMU Ta Li Battery Ta absent Ta
485 Battery is no longer absent.
486 .It Li PMU Ta Li Battery Ta charged Ta
487 The battery has become charged.
488 .It Li PMU Ta Li Battery Ta charging Ta
489 The battery has started charging.
490 .It Li PMU Ta Li Battery Ta disconnected Ta
491 The battery has been disconnected.
492 .It Li PMU Ta Li Battery Ta high-temp Ta
493 The battery reported a temperature over the limit.
494 .It Li PMU Ta Li Battery Ta low-temp Ta
495 The battery reported a temperature under the limit.
496 .It Li PMU Ta Li Battery Ta plugged Ta
497 The battery has become plugged (eg connected).
498 .It Li PMU Ta Li Battery Ta shutdown-threshold Ta
499 The power in the battery has fallen below the shutdown threshold.
500 .It Li PMU Ta Li Battery Ta warning-threshold Ta
501 The power in the battery has fallen below the warn the user threshold.
502 .It Li PMU Ta Li Button Ta pressed Ta
503 A button on a
504 .Xr adb 4
505 or
506 .Xr pmu 4
507 has been pressed.
508 .It Li PMU Ta Li keys Ta Ta
509 One of the keys on the
510 .Xr adb 4
511 keyboard has been pressed.
512 .It Li PMU Ta Li keys Ta brightness Ta
513 A brightness level change has been requested.
514 Direction is in the $notify variable.
515 .It Li PMU Ta Li keys Ta mute Ta
516 The mute key 
517 .It Li PMU Ta Li keys Ta volume Ta
518 A volume level change has been requested.
519 Direction is in the $notify variable.
520 .It Li PMU Ta Li keys Ta eject Ta
521 An ejection has been requested.
522 .It Li PMU Ta Li lid Ta close Ta
523 The
524 .Xr pmc 4
525 device has detected the lid closing.
526 .It Li PMU Ta Li lid Ta open Ta
527 The
528 .Xr pmc 4
529 device has detected the lid openinging.
530 .It Li PMU Ta Li POWER Ta ACLINE Ta
531 The
532 .Xr pmc 4
533 device has deteted an AC line state ($notify=0x00 is offline, 0x01 is online).
534 .It Li PMU Ta Li USB Ta overvoltage Ta
535 An over-voltage condition on the power lines for the USB power pins.
536 .It Li PMU Ta Li USB Ta plugged Ta
537 A device has been plugged into a USB device.
538 .It Li PMU Ta Li USB Ta undervoltage Ta
539 An under-voltage condition on the power lines for the USB power pins.
540 .It Li PMU Ta Li USB Ta unplugged Ta
541 A device has been unplugged into a USB device.
542 .El
543 .Pp
544 .Bl -column "System" "Subsystem" "1234567" -compact
545 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
546 .It Li RCTL Ta Ta Ta
547 Events related to the
548 .Xr rctl 8
549 framework.
550 .It Li RCTL Ta Li rule Ta Li matched Ta
551 A rule with action specified as "devctl" was triggered.
552 .El
553 .Pp
554 .Bl -column "System" "Subsystem" "1234567" -compact
555 .Sy "System" Ta Sy "Subsystem" Ta Sy "Type" Ta Sy "Description"
556 .It Li USB Ta Ta Ta
557 Events related to the USB subsystem.
558 .It Li USB Ta Li DEVICE Ta Li ATTACH Ta
559 USB device is attached to the system.
560 .It Li USB Ta Li DEVICE Ta Li DETACH Ta
561 USB device is detached to the system.
562 .It Li USB Ta Li INTERFACE Ta Li ATTACH Ta
563 USB interface is attached to a device.
564 .It Li USB Ta Li INTERFACE Ta Li DETACH Ta
565 USB interface is detached from a device.
566 .El
567 .Pp
568 .\"
569 .\" End of tables
570 .\"
571 A link state change to UP on the interface
572 .Dq Li fxp0
573 would result in the following notify event:
574 .Bd -literal -offset indent
575 system=IFNET subsystem=fxp0 type=LINK_UP
576 .Ed
577 .Pp
578 An AC line state change to
579 .Dq offline
580 would result in the following event:
581 .Bd -literal -offset indent
582 system=ACPI subsystem=ACAD notify=0x00
583 .Ed
584 .Ss Comments
585 Comments may appear anywhere that whitespace may appear in a
586 configuration file.
587 To appeal to programmers of all kinds, they can
588 be written in C, C++, or shell/Perl constructs.
589 .Pp
590 C-style comments start with the two characters
591 .Ql /*
592 (slash, star) and end with
593 .Ql */
594 (star, slash).
595 Because they are completely delimited with these characters,
596 they can be used to comment only a portion of a line or to span
597 multiple lines.
598 .Pp
599 C-style comments cannot be nested.
600 For example, the following is
601 not valid because the entire comment ends with the first
602 .Ql */ :
603 .Bd -literal -offset indent
604 /* This is the start of a comment.
605    This is still part of the comment.
606 /* This is an incorrect attempt at nesting a comment. */
607    This is no longer in any comment. */
608 .Ed
609 .Pp
610 C++-style comments start with the two characters
611 .Ql //
612 (slash, slash) and continue to the end of the physical line.
613 They cannot be continued across multiple physical lines; to have
614 one logical comment span multiple lines, each line must use the
615 .Ql //
616 pair.
617 For example:
618 .Bd -literal -offset indent
619 // This is the start of a comment.  The next line
620 // is a new comment, even though it is logically
621 // part of the previous comment.
622 .Ed
623 .Sh FILES
624 .Bl -tag -width ".Pa /etc/devd.conf" -compact
625 .It Pa /etc/devd.conf
626 The
627 .Xr devd 8
628 configuration file.
629 .El
630 .Sh EXAMPLES
631 .Bd -literal
632 #
633 # This will catch link down events on the interfaces fxp0 and ath0
634 #
635 notify 0 {
636         match "system"                  "IFNET";
637         match "subsystem"               "(fxp0|ath0)";
638         match "type"                    "LINK_DOWN";
639         action "logger $subsystem is DOWN";
640 };
641
642 #
643 # Match lid open/close events
644 # These can be combined to a single event, by passing the
645 # value of $notify to the external script.
646 #
647 notify 0 {
648         match "system"                  "ACPI";
649         match "subsystem"               "Lid";
650         match "notify"                  "0x00";
651         action "logger Lid closed, we can sleep now!";
652 };
653
654 notify 0 {
655         match "system"                  "ACPI";
656         match "subsystem"               "Lid";
657         match "notify"                  "0x01";
658         action "logger Lid opened, the sleeper must awaken!";
659 };
660
661 #
662 # Match a USB device type
663 #
664 notify 0 {
665         match "system"                  "USB";
666         match "subsystem"               "INTERFACE";
667         match "type"                    "ATTACH";
668         match "intclass"                "0x0e";
669         action "logger USB video device attached";
670 };
671
672 #
673 # Try to configure ath and iwn devices with pccard_ether
674 # as they are attached.
675 #
676 attach 0 {
677         device-name "(ath|iwn)[0-9]+";
678         action "/etc/pccard_ether $device-name start";
679 };
680
681 #
682 # Stop ath and iwn devices as they are detached from
683 # the system.
684 #
685 detach 0 {
686         device-name "(ath|iwn)[0-9]+";
687         action "/etc/pccard_ether $device-name stop";
688 };
689 .Ed
690 .Pp
691 The installed
692 .Pa /etc/devd.conf
693 has many additional examples.
694 .Sh SEE ALSO
695 .Xr cam 4 ,
696 .Xr coretemp 4 ,
697 .Xr devfs 5 ,
698 .Xr re_format 7 ,
699 .Xr devd 8