]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/devd.conf
Increase the nfs access cache timeout from 2 to 60. The latter is a
[FreeBSD/FreeBSD.git] / etc / devd.conf
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
10 options {
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         #XXX Yes, these are gross -- imp
21         set scsi-controller-regex
22                 "(aac|adv|adw|aha|ahb|ahc|ahd|aic|amd|amr|asr|bt|ciss|ct|dpt|\
23                 esp|ida|iir|ips|isp|mlx|mly|mpt|ncr|ncv|nsp|stg|sym|trm|wds)\
24                 [0-9]+";
25 };
26
27 # Note that the attach/detach with the highest value wins, so that one can
28 # override these general rules.
29
30 #
31 # For ethernet like devices start configuring the interface.  Due to
32 # a historical accident, this script is called pccard_ether.
33 #
34 attach 0 {
35         media-type "ethernet";
36         action "/etc/pccard_ether $device-name start";
37 };
38
39 detach 0 {
40         media-type "ethernet";
41         action "/etc/pccard_ether $device-name stop";
42 };
43
44 #
45 # Try to start dhclient on Ethernet like interfaces when the link comes
46 # up.  Only devices that are configured to support DHCP will actually
47 # run it.  No link down rule exists because dhclient automaticly exits
48 # when the link goes down.
49 #
50 notify 0 {
51         match "system"          "IFNET";
52         match "type"            "LINK_UP";
53         media-type              "ethernet";
54         action "/etc/rc.d/dhclient start $subsystem";
55 };
56
57 #
58 # Like Ethernet devices, but separate because
59 # they have a different media type.  We may want
60 # to exploit this later.
61 #
62 detach 0 {
63         media-type "802.11";
64         action "/etc/pccard_ether $device-name stop";
65 };
66 attach 0 {
67         media-type "802.11";
68         action "/etc/pccard_ether $device-name start";
69 };
70 notify 0 {
71         match "system"          "IFNET";
72         match "type"            "LINK_UP";
73         media-type              "802.11";
74         action "/etc/rc.d/dhclient start $subsystem";
75 };
76
77 # An entry like this might be in a different file, but is included here
78 # as an example of how to override things.  Normally 'ed50' would match
79 # the above attach/detach stuff, but the value of 100 makes it
80 # hard wired to 1.2.3.4.
81 attach 100 {
82         device-name "ed50";
83         action "ifconfig $device-name inet 1.2.3.4 netmask 0xffff0000";
84 };
85 detach 100 {
86         device-name "ed50";
87 };
88
89 # When a USB Bluetooth dongle appears activate it
90 attach 100 {
91         device-name "ubt[0-9]+";
92         action "/etc/rc.d/bluetooth start $device-name";
93 };
94 detach 100 {
95         device-name "ubt[0-9]+";
96         action "/etc/rc.d/bluetooth stop $device-name";
97 };
98
99 # When a USB keyboard arrives, attach it as the console keyboard.
100 attach 100 {
101         device-name "ukbd0";
102         action "/etc/rc.d/syscons setkeyboard /dev/ukbd0";
103 };
104 detach 100 {
105         device-name "ukbd0";
106         action "/etc/rc.d/syscons setkeyboard /dev/kbd0";
107 };
108
109 # The entry below starts moused when a mouse is plugged in. Moused
110 # stops automatically (actually it bombs :) when the device disappears.
111 attach 100 {
112         device-name "ums[0-9]+";
113         action "/etc/rc.d/moused start $device-name";
114 };
115
116 # Firmware download into the ActiveWire board. After the firmware download is
117 # done the device detaches and reappears as something new and shiny
118 # automatically.
119 attach 100 {
120         match "vendor"  "0x0854";
121         match "product" "0x0100";
122         match "release" "0x0000";
123         action "/usr/local/bin/ezdownload -f /usr/local/share/usb/firmware/0854.0100.0_01.hex $device-name";
124 };
125
126 # Firmware download for Entrega Serial DB25 adapter.
127 attach 100 {
128         match "vendor"  "0x1645";
129         match "product" "0x8001";
130         match "release" "0x0101";
131         action "if ! kldstat -n usio > /dev/null 2>&1 ; then kldload usio; fi /usr/sbin/ezdownload -v -f /usr/share/usb/firmware/1645.8001.0101 /dev/$device-name";
132 };
133
134 # This entry starts the ColdSync tool in daemon mode. Make sure you have an up
135 # to date /usr/local/etc/palms. We override the 'listen' settings for port and
136 # type in /usr/local/etc/coldsync.conf.
137 attach 100 {
138         device-name "ugen[0-9]+";
139         match "vendor" "0x082d";
140         match "product" "0x0100";
141         match "release" "0x0100";
142         action "/usr/local/bin/coldsync -md -p /dev/$device-name -t usb";
143 };
144
145 #
146 # Rescan scsi device-names on attach, but not detach.  However, it is
147 # disabled by default due to reports of problems.
148 #
149 attach 0 {
150         device-name "$scsi-controller-regex";
151 //      action "camcontrol rescan all";
152 };
153
154 # Don't even try to second guess what to do about drivers that don't
155 # match here.  Instead, pass it off to syslog.  Commented out for the
156 # moment, as pnpinfo isn't set in devd yet.
157 nomatch 0 {
158 #       action "logger Unknown device: $pnpinfo $location $bus";
159 };
160
161 # Switch power profiles when the AC line state changes.
162 notify 10 {
163         match "system"          "ACPI";
164         match "subsystem"       "ACAD";
165         action "/etc/rc.d/power_profile $notify";
166 };
167
168 # Notify all users before beginning emergency shutdown when we get
169 # a _CRT or _HOT thermal event and we're going to power down the system
170 # very soon.
171 notify 10 {
172         match "system"          "ACPI";
173         match "subsystem"       "Thermal";
174         match "notify"          "0xcc";
175         action "logger -p kern.emerg 'WARNING: system temperature too high, shutting down soon!'";
176 };
177
178 /* EXAMPLES TO END OF FILE
179
180 # The following might be an example of something that a vendor might
181 # install if you were to add their device.  This might reside in
182 # /usr/local/etc/devd/deqna.conf.  A deqna is, in this hypothetical
183 # example, a pccard ethernet-like device.  Students of history may
184 # know other devices by this name, and will get the in-jokes in this
185 # entry.
186 nomatch 10 {
187         match "bus" "pccard[0-9]+";
188         match "manufacturer" "0x1234";
189         match "product" "0x2323";
190         action "kldload if_deqna";
191 };
192 attach 10 {
193         device-name "deqna[0-9]+";
194         action "/etc/pccard_ether $device-name start";
195 };
196 detach 10 {
197         device-name "deqna[0-9]+";
198         action "/etc/pccard_ether $device-name stop";
199 };
200
201 # Examples of notify hooks.  A notify is a generic way for a kernel
202 # subsystem to send event notification to userland.
203 #
204 # Here are some examples of ACPI notify handlers.  ACPI subsystems that
205 # generate notifies include the AC adapter, power/sleep buttons,
206 # control method batteries, lid switch, and thermal zones.
207 #
208 # Information returned is not always the same as the ACPI notify
209 # events.  See the ACPI specification for more information about
210 # notifies.  Here is the information returned for each subsystem:
211 #
212 # ACAD:         AC line state (0 is offline, 1 is online)
213 # Button:       Button pressed (0 for power, 1 for sleep)
214 # CMBAT:        ACPI battery events
215 # Lid:          Lid state (0 is closed, 1 is open)
216 # Thermal:      ACPI thermal zone events
217 #
218 # This example calls a script when the AC state changes, passing the
219 # notify value as the first argument.  If the state is 0x00, it might
220 # call some sysctls to implement economy mode.  If 0x01, it might set
221 # the mode to performance.
222 notify 10 {
223         match "system"          "ACPI";
224         match "subsystem"       "ACAD";
225         action                  "/etc/acpi_ac $notify";
226 };
227 */