xref: /freebsd/sbin/devd/devd.conf (revision 69c9999d0ca45b210e75706ab4952ad5a33ce6ec)
1# $FreeBSD$
2#
3# Refer to devd.conf(5) and devd(8) man pages for the details on how to
4# run and configure devd.
5#
6
7# NB: All regular expressions have an implicit ^$ around them.
8# NB: device-name is shorthand for 'match device-name'
9
10options {
11	# Each directory directive adds a directory the list of directories
12	# that we scan for files.  Files are read-in in the order that they
13	# are returned from readdir(3).  The rule-sets are combined to
14	# create a DFA that's used to match events to actions.
15	directory "/etc/devd";
16	directory "/usr/local/etc/devd";
17	pid-file "/var/run/devd.pid";
18
19	# Setup some shorthand for regex that we use later in the file.
20	set ethernet-nic-regex
21		"(an|ar|aue|awi|bge|cm|cnw|cs|cue|dc|de|ed|el|em|ep|ex|\
22		fe|fxp|gem|gx|hme|ie|kue|lge|lnc|my|nge|pcn|ray|rl|\
23		sf|sis|sk|sn|snc|ste|ti|tl|tx|txp|vr|vx|wb|wi|xe|xl)[0-9]+";
24	set scsi-controller-regex
25		"(adv|advw|aic|aha|ahb|ahc|ahd|bt|ct|iir|isp|mly|mpt|ncv|nsp|\
26		stg|sym|wds)[0-9]+";
27};
28
29# Note that the attach/detach with the highest value wins, so that one can
30# override these general rules.
31
32#
33# For ethernet like devices, the default is to run dhclient.  Due to
34# a historical accident, the name of this script it called pccard_ether
35#
36attach 0 {
37	device-name "$ethernet-nic-regex";
38	action "/etc/pccard_ether $device-name start";
39};
40
41detach 0 {
42	device-name "$ethernet-nic-regex";
43	action "/etc/pccard_ether $device-name stop";
44};
45
46# An entry like this might be in a different file, but is included here
47# as an example of how to override things.  Normally 'ed20' would match
48# the above attach/detach stuff, but the value of 100 makes it
49# ed20 is hard wired to 1.2.3.4
50attach 100 {
51	device-name "ed20";
52	action "ifconfig $device-name inet 1.2.3.4 netmask 0xffff0000";
53};
54detach 100 {
55	device-name "ed20";
56};
57
58#
59# Rescan scsi device-names on attach, but not detach.
60#
61attach 0 {
62	device-name "$scsi-controller-regex";
63	action "camcontrol rescan all";
64};
65
66# Don't even try to second guess what to do about drivers that don't
67# match here.  Instead, pass it off to a smart script to deal.
68nomatch 0 {
69	action "/usr/local/bin/smart-loader $pnpinfo $location $bus";
70};
71
72# The following might be an example of something that a vendor might
73# install if you were to add their device.  This might reside in
74# /usr/local/etc/devd/deqna.conf.  A deqna is, in this hypothetical
75# example, a pccard ethernet-like device.  Students of history may
76# know other devices by this name, and will get the in-jokes in this
77# entry.
78nomatch 10 {
79	match "bus" "pccard[0-9]+";
80	match "manufacturer" "0x1234";
81	match "product" "0x2323";
82	action "kldload if_deqna";
83};
84attach 10 {
85	device-name "deqna[0-9]+";
86	action "/etc/pccard_ether $device-name start";
87};
88detach 10 {
89	device-name "deqna[0-9]+";
90	action "/etc/pccard_ether $device-name stop";
91};
92
93// Single line comment, alternate style
94/*
95 * This is a multiline comment
96 * 96
97 * 97
98 * 98
99 * 99 */
100# error		uncomment this line to test, should be line 100.
101