2003-01-09 04:05:06 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# Refer to devd.conf(5) and devd(8) man pages for the details on how to
|
|
|
|
# run and configure devd.
|
|
|
|
#
|
|
|
|
|
|
|
|
# NB: All regular expressions have an implicit ^$ around them.
|
|
|
|
# NB: device-name is shorthand for 'match device-name'
|
|
|
|
|
|
|
|
options {
|
2011-09-29 03:37:42 +00:00
|
|
|
# Each "directory" directive adds a directory to the list of
|
|
|
|
# directories that we scan for files. Files are loaded in the order
|
|
|
|
# that they are returned from readdir(3). The rule-sets are combined
|
|
|
|
# to create a DFA that's used to match events to actions.
|
2003-01-09 04:05:06 +00:00
|
|
|
directory "/etc/devd";
|
|
|
|
directory "/usr/local/etc/devd";
|
|
|
|
pid-file "/var/run/devd.pid";
|
|
|
|
|
|
|
|
# Setup some shorthand for regex that we use later in the file.
|
2005-07-28 03:51:54 +00:00
|
|
|
#XXX Yes, these are gross -- imp
|
2003-01-09 04:05:06 +00:00
|
|
|
set scsi-controller-regex
|
2004-12-19 00:50:07 +00:00
|
|
|
"(aac|adv|adw|aha|ahb|ahc|ahd|aic|amd|amr|asr|bt|ciss|ct|dpt|\
|
2005-06-04 21:05:37 +00:00
|
|
|
esp|ida|iir|ips|isp|mlx|mly|mpt|ncr|ncv|nsp|stg|sym|trm|wds)\
|
2004-12-19 00:50:07 +00:00
|
|
|
[0-9]+";
|
2015-09-02 12:46:42 +00:00
|
|
|
set wifi-driver-regex
|
2015-09-02 14:38:16 +00:00
|
|
|
"(ath|bwi|bwn|ipw|iwi|iwm|iwn|malo|mwl|ral|rsu|rum|run|uath|\
|
|
|
|
upgt|ural|urtw|urtwn|wi|wpi|wtap|zyd)[0-9]+";
|
2003-01-09 04:05:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Note that the attach/detach with the highest value wins, so that one can
|
|
|
|
# override these general rules.
|
|
|
|
|
|
|
|
#
|
2006-06-01 00:41:07 +00:00
|
|
|
# Configure the interface on attach. Due to a historical accident, this
|
|
|
|
# script is called pccard_ether.
|
2003-01-09 04:05:06 +00:00
|
|
|
#
|
2009-01-26 23:05:50 +00:00
|
|
|
# NB: DETACH events are ignored; the kernel should handle all cleanup
|
2011-09-29 03:37:42 +00:00
|
|
|
# (routes, arp cache). Beware of races against immediate create
|
|
|
|
# of a device with the same name; e.g.
|
2013-03-02 18:08:03 +00:00
|
|
|
# ifconfig bridge0 destroy; ifconfig bridge0 create
|
2009-01-26 23:05:50 +00:00
|
|
|
#
|
2006-06-01 00:41:07 +00:00
|
|
|
notify 0 {
|
|
|
|
match "system" "IFNET";
|
2011-10-26 02:11:28 +00:00
|
|
|
match "subsystem" "!usbus[0-9]+";
|
2006-06-01 00:41:07 +00:00
|
|
|
match "type" "ATTACH";
|
|
|
|
action "/etc/pccard_ether $subsystem start";
|
2003-01-09 04:05:06 +00:00
|
|
|
};
|
|
|
|
|
2005-06-07 04:49:12 +00:00
|
|
|
#
|
2011-09-29 03:37:42 +00:00
|
|
|
# Try to start dhclient on Ethernet-like interfaces when the link comes
|
2005-06-07 04:49:12 +00:00
|
|
|
# up. Only devices that are configured to support DHCP will actually
|
2011-01-04 23:00:54 +00:00
|
|
|
# run it. No link down rule exists because dhclient automatically exits
|
2005-06-07 04:49:12 +00:00
|
|
|
# when the link goes down.
|
|
|
|
#
|
|
|
|
notify 0 {
|
|
|
|
match "system" "IFNET";
|
|
|
|
match "type" "LINK_UP";
|
2005-08-02 18:28:31 +00:00
|
|
|
media-type "ethernet";
|
2008-01-26 13:50:38 +00:00
|
|
|
action "/etc/rc.d/dhclient quietstart $subsystem";
|
2005-08-02 18:28:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#
|
2015-09-02 12:46:42 +00:00
|
|
|
# Like Ethernet devices, but separate because 802.11 require spawning
|
|
|
|
# wlan(4) interface.
|
2005-08-02 18:28:31 +00:00
|
|
|
#
|
|
|
|
attach 0 {
|
2015-09-02 12:46:42 +00:00
|
|
|
device-name "$wifi-driver-regex";
|
|
|
|
action "/etc/pccard_ether $device-name startchildren";
|
|
|
|
};
|
|
|
|
detach 0 {
|
|
|
|
device-name "$wifi-driver-regex";
|
|
|
|
action "/etc/pccard_ether $device-name stopchildren";
|
2005-08-02 18:28:31 +00:00
|
|
|
};
|
|
|
|
notify 0 {
|
|
|
|
match "system" "IFNET";
|
|
|
|
match "type" "LINK_UP";
|
|
|
|
media-type "802.11";
|
2008-01-26 13:50:38 +00:00
|
|
|
action "/etc/rc.d/dhclient quietstart $subsystem";
|
2005-06-07 04:49:12 +00:00
|
|
|
};
|
|
|
|
|
2003-01-09 04:05:06 +00:00
|
|
|
# An entry like this might be in a different file, but is included here
|
|
|
|
# as an example of how to override things. Normally 'ed50' would match
|
|
|
|
# the above attach/detach stuff, but the value of 100 makes it
|
2004-12-25 00:12:27 +00:00
|
|
|
# hard wired to 1.2.3.4.
|
2003-01-09 04:05:06 +00:00
|
|
|
attach 100 {
|
|
|
|
device-name "ed50";
|
|
|
|
action "ifconfig $device-name inet 1.2.3.4 netmask 0xffff0000";
|
|
|
|
};
|
|
|
|
detach 100 {
|
|
|
|
device-name "ed50";
|
|
|
|
};
|
|
|
|
|
2011-09-29 03:37:42 +00:00
|
|
|
# When a USB Bluetooth dongle appears, activate it
|
2005-11-12 03:42:56 +00:00
|
|
|
attach 100 {
|
|
|
|
device-name "ubt[0-9]+";
|
2008-01-26 13:50:38 +00:00
|
|
|
action "/etc/rc.d/bluetooth quietstart $device-name";
|
2005-11-12 03:42:56 +00:00
|
|
|
};
|
|
|
|
detach 100 {
|
|
|
|
device-name "ubt[0-9]+";
|
2008-01-26 13:50:38 +00:00
|
|
|
action "/etc/rc.d/bluetooth quietstop $device-name";
|
2005-11-12 03:42:56 +00:00
|
|
|
};
|
|
|
|
|
2010-11-12 19:43:12 +00:00
|
|
|
# Firmware downloader for Atheros AR3011 based USB Bluetooth devices
|
|
|
|
#attach 100 {
|
|
|
|
# match "vendor" "0x0cf3";
|
|
|
|
# match "product" "0x3000";
|
|
|
|
# action "sleep 2 && /usr/sbin/ath3kfw -d $device-name -f /usr/local/etc/ath3k-1.fw";
|
|
|
|
#};
|
|
|
|
|
2004-12-25 00:12:27 +00:00
|
|
|
# When a USB keyboard arrives, attach it as the console keyboard.
|
2004-09-01 00:08:15 +00:00
|
|
|
attach 100 {
|
|
|
|
device-name "ukbd0";
|
2006-03-16 17:42:28 +00:00
|
|
|
action "/etc/rc.d/syscons setkeyboard /dev/ukbd0";
|
2004-09-01 00:08:15 +00:00
|
|
|
};
|
|
|
|
detach 100 {
|
|
|
|
device-name "ukbd0";
|
2006-03-06 06:38:34 +00:00
|
|
|
action "/etc/rc.d/syscons setkeyboard /dev/kbd0";
|
2004-09-01 00:08:15 +00:00
|
|
|
};
|
|
|
|
|
2014-01-29 10:42:01 +00:00
|
|
|
notify 100 {
|
|
|
|
match "system" "DEVFS";
|
|
|
|
match "subsystem" "CDEV";
|
|
|
|
match "type" "CREATE";
|
|
|
|
match "cdev" "atp[0-9]+";
|
|
|
|
|
|
|
|
action "/etc/rc.d/moused quietstart $cdev";
|
|
|
|
};
|
|
|
|
|
2012-09-24 17:13:33 +00:00
|
|
|
notify 100 {
|
|
|
|
match "system" "DEVFS";
|
|
|
|
match "subsystem" "CDEV";
|
|
|
|
match "type" "CREATE";
|
|
|
|
match "cdev" "ums[0-9]+";
|
|
|
|
|
|
|
|
action "/etc/rc.d/moused quietstart $cdev";
|
2004-11-28 23:16:00 +00:00
|
|
|
};
|
|
|
|
|
2014-01-29 10:42:01 +00:00
|
|
|
notify 100 {
|
|
|
|
match "system" "DEVFS";
|
|
|
|
match "subsystem" "CDEV";
|
|
|
|
match "type" "CREATE";
|
|
|
|
match "cdev" "wsp[0-9]+";
|
|
|
|
|
|
|
|
action "/etc/rc.d/moused quietstart $cdev";
|
|
|
|
};
|
|
|
|
|
2012-09-24 17:13:33 +00:00
|
|
|
notify 100 {
|
|
|
|
match "system" "DEVFS";
|
|
|
|
match "subsystem" "CDEV";
|
|
|
|
match "type" "DESTROY";
|
|
|
|
match "cdev" "ums[0-9]+";
|
|
|
|
|
|
|
|
action "/etc/rc.d/moused stop $cdev";
|
2010-05-14 04:53:57 +00:00
|
|
|
};
|
2008-06-15 13:25:23 +00:00
|
|
|
|
2005-12-11 00:18:28 +00:00
|
|
|
# Firmware download into the ActiveWire board. After the firmware download is
|
2011-09-29 03:37:42 +00:00
|
|
|
# done, the device detaches and reappears as something new and shiny
|
2005-12-11 00:18:28 +00:00
|
|
|
# automatically.
|
|
|
|
attach 100 {
|
|
|
|
match "vendor" "0x0854";
|
|
|
|
match "product" "0x0100";
|
|
|
|
match "release" "0x0000";
|
|
|
|
action "/usr/local/bin/ezdownload -f /usr/local/share/usb/firmware/0854.0100.0_01.hex $device-name";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Firmware download for Entrega Serial DB25 adapter.
|
|
|
|
attach 100 {
|
|
|
|
match "vendor" "0x1645";
|
|
|
|
match "product" "0x8001";
|
|
|
|
match "release" "0x0101";
|
2009-05-16 15:12:56 +00:00
|
|
|
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";
|
2005-12-11 00:18:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# This entry starts the ColdSync tool in daemon mode. Make sure you have an up
|
|
|
|
# to date /usr/local/etc/palms. We override the 'listen' settings for port and
|
|
|
|
# type in /usr/local/etc/coldsync.conf.
|
2010-04-21 21:51:14 +00:00
|
|
|
notify 100 {
|
|
|
|
match "system" "USB";
|
|
|
|
match "subsystem" "DEVICE";
|
|
|
|
match "type" "ATTACH";
|
|
|
|
match "vendor" "0x082d";
|
|
|
|
match "product" "0x0100";
|
|
|
|
match "release" "0x0100";
|
|
|
|
action "/usr/local/bin/coldsync -md -p /dev/$cdev -t usb";
|
2005-12-11 00:18:28 +00:00
|
|
|
};
|
|
|
|
|
2003-01-09 04:05:06 +00:00
|
|
|
#
|
2013-03-02 18:08:03 +00:00
|
|
|
# Rescan SCSI device-names on attach, but not detach. However, it is
|
2005-07-28 03:51:54 +00:00
|
|
|
# disabled by default due to reports of problems.
|
2003-01-09 04:05:06 +00:00
|
|
|
#
|
|
|
|
attach 0 {
|
|
|
|
device-name "$scsi-controller-regex";
|
2004-07-05 20:16:30 +00:00
|
|
|
// action "camcontrol rescan all";
|
2003-01-09 04:05:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Don't even try to second guess what to do about drivers that don't
|
2003-05-07 15:48:20 +00:00
|
|
|
# match here. Instead, pass it off to syslog. Commented out for the
|
2007-02-15 16:38:10 +00:00
|
|
|
# moment, as the pnpinfo variable isn't set in devd yet. Individual
|
|
|
|
# variables within the bus supplied pnpinfo are set.
|
2003-08-22 02:18:01 +00:00
|
|
|
nomatch 0 {
|
2003-05-09 05:58:22 +00:00
|
|
|
# action "logger Unknown device: $pnpinfo $location $bus";
|
2003-08-22 02:18:01 +00:00
|
|
|
};
|
2003-01-09 04:05:06 +00:00
|
|
|
|
2007-02-14 08:13:54 +00:00
|
|
|
# Various logging of unknown devices.
|
|
|
|
nomatch 10 {
|
|
|
|
match "bus" "uhub[0-9]+";
|
|
|
|
action "logger Unknown USB device: vendor $vendor product $product \
|
|
|
|
bus $bus";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Some PC-CARDs don't offer numerical manufacturer/product IDs, just
|
|
|
|
# show the CIS info there.
|
|
|
|
nomatch 20 {
|
|
|
|
match "bus" "pccard[0-9]+";
|
|
|
|
match "manufacturer" "0xffffffff";
|
|
|
|
match "product" "0xffffffff";
|
|
|
|
action "logger Unknown PCCARD device: CISproduct $cisproduct \
|
|
|
|
CIS-vendor $cisvendor bus $bus";
|
|
|
|
};
|
|
|
|
|
|
|
|
nomatch 10 {
|
|
|
|
match "bus" "pccard[0-9]+";
|
|
|
|
action "logger Unknown PCCARD device: manufacturer $manufacturer \
|
|
|
|
product $product CISproduct $cisproduct CIS-vendor \
|
|
|
|
$cisvendor bus $bus";
|
|
|
|
};
|
|
|
|
|
|
|
|
nomatch 10 {
|
|
|
|
match "bus" "cardbus[0-9]+";
|
|
|
|
action "logger Unknown Cardbus device: device $device class $class \
|
|
|
|
vendor $vendor bus $bus";
|
|
|
|
};
|
|
|
|
|
2004-12-25 00:12:27 +00:00
|
|
|
# Switch power profiles when the AC line state changes.
|
2003-12-18 04:39:57 +00:00
|
|
|
notify 10 {
|
|
|
|
match "system" "ACPI";
|
|
|
|
match "subsystem" "ACAD";
|
2004-02-03 04:18:56 +00:00
|
|
|
action "/etc/rc.d/power_profile $notify";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Notify all users before beginning emergency shutdown when we get
|
|
|
|
# a _CRT or _HOT thermal event and we're going to power down the system
|
|
|
|
# very soon.
|
|
|
|
notify 10 {
|
|
|
|
match "system" "ACPI";
|
|
|
|
match "subsystem" "Thermal";
|
|
|
|
match "notify" "0xcc";
|
|
|
|
action "logger -p kern.emerg 'WARNING: system temperature too high, shutting down soon!'";
|
2003-12-18 04:39:57 +00:00
|
|
|
};
|
|
|
|
|
2007-06-21 22:50:37 +00:00
|
|
|
# User requested suspend, so perform preparation steps and then execute
|
|
|
|
# the actual suspend process.
|
|
|
|
notify 10 {
|
|
|
|
match "system" "ACPI";
|
|
|
|
match "subsystem" "Suspend";
|
|
|
|
action "/etc/rc.suspend acpi $notify";
|
|
|
|
};
|
|
|
|
notify 10 {
|
|
|
|
match "system" "ACPI";
|
|
|
|
match "subsystem" "Resume";
|
|
|
|
action "/etc/rc.resume acpi $notify";
|
|
|
|
};
|
|
|
|
|
2003-01-09 04:05:06 +00:00
|
|
|
/* EXAMPLES TO END OF FILE
|
|
|
|
|
2011-09-29 03:37:42 +00:00
|
|
|
# An example of something that a vendor might install if you were to
|
|
|
|
# add their device. This might reside in /usr/local/etc/devd/deqna.conf.
|
|
|
|
# A deqna is, in this hypothetical example, a pccard ethernet-like device.
|
|
|
|
# Students of history may know other devices by this name, and will get
|
|
|
|
# the in-jokes in this entry.
|
2003-01-09 04:05:06 +00:00
|
|
|
nomatch 10 {
|
|
|
|
match "bus" "pccard[0-9]+";
|
|
|
|
match "manufacturer" "0x1234";
|
|
|
|
match "product" "0x2323";
|
|
|
|
action "kldload if_deqna";
|
|
|
|
};
|
|
|
|
attach 10 {
|
|
|
|
device-name "deqna[0-9]+";
|
|
|
|
action "/etc/pccard_ether $device-name start";
|
|
|
|
};
|
|
|
|
detach 10 {
|
|
|
|
device-name "deqna[0-9]+";
|
|
|
|
action "/etc/pccard_ether $device-name stop";
|
|
|
|
};
|
|
|
|
|
2003-10-25 05:03:25 +00:00
|
|
|
# Examples of notify hooks. A notify is a generic way for a kernel
|
|
|
|
# subsystem to send event notification to userland.
|
2011-09-29 03:37:42 +00:00
|
|
|
|
2003-10-25 05:03:25 +00:00
|
|
|
# Here are some examples of ACPI notify handlers. ACPI subsystems that
|
|
|
|
# generate notifies include the AC adapter, power/sleep buttons,
|
|
|
|
# control method batteries, lid switch, and thermal zones.
|
|
|
|
#
|
|
|
|
# Information returned is not always the same as the ACPI notify
|
|
|
|
# events. See the ACPI specification for more information about
|
|
|
|
# notifies. Here is the information returned for each subsystem:
|
|
|
|
#
|
2013-03-02 18:08:03 +00:00
|
|
|
# ACAD: AC line state (0 is offline, 1 is online)
|
|
|
|
# Button: Button pressed (0 for power, 1 for sleep)
|
|
|
|
# CMBAT: ACPI battery events
|
|
|
|
# Lid: Lid state (0 is closed, 1 is open)
|
2007-06-21 22:50:37 +00:00
|
|
|
# Suspend, Resume: Suspend and resume notification
|
2013-03-02 18:08:03 +00:00
|
|
|
# Thermal: ACPI thermal zone events
|
2003-10-25 05:03:25 +00:00
|
|
|
#
|
|
|
|
# This example calls a script when the AC state changes, passing the
|
|
|
|
# notify value as the first argument. If the state is 0x00, it might
|
|
|
|
# call some sysctls to implement economy mode. If 0x01, it might set
|
|
|
|
# the mode to performance.
|
|
|
|
notify 10 {
|
|
|
|
match "system" "ACPI";
|
|
|
|
match "subsystem" "ACAD";
|
|
|
|
action "/etc/acpi_ac $notify";
|
|
|
|
};
|
2011-03-30 18:35:02 +00:00
|
|
|
|
|
|
|
# This example works around a memory leak in PostgreSQL, restarting
|
2011-09-29 03:37:42 +00:00
|
|
|
# it when the "user:pgsql:swap:devctl=1G" rctl(8) rule gets triggered.
|
2011-03-30 18:35:02 +00:00
|
|
|
notify 0 {
|
|
|
|
match "system" "RCTL";
|
|
|
|
match "rule" "user:70:swap:.*";
|
2012-07-09 20:11:32 +00:00
|
|
|
action "/usr/local/etc/rc.d/postgresql restart";
|
2011-03-30 18:35:02 +00:00
|
|
|
};
|
|
|
|
|
2015-01-14 11:18:45 +00:00
|
|
|
# Discard autofs caches, useful for the -media special map.
|
2014-12-10 14:36:44 +00:00
|
|
|
notify 100 {
|
2015-01-14 11:18:45 +00:00
|
|
|
match "system" "GEOM";
|
|
|
|
match "subsystem" "DEV";
|
|
|
|
action "/usr/sbin/automount -c";
|
2014-12-10 14:36:44 +00:00
|
|
|
};
|
|
|
|
|
2015-02-09 23:13:50 +00:00
|
|
|
# Handle userland coredumps.
|
|
|
|
# This commented out handler makes it possible to run an
|
|
|
|
# automated debugging session after the core dump is generated.
|
|
|
|
# Replace action with a proper coredump handler, but be aware that
|
|
|
|
# it will run with elevated privileges.
|
|
|
|
notify 10 {
|
|
|
|
match "system" "kernel";
|
|
|
|
match "subsystem" "signal";
|
|
|
|
match "type" "coredump";
|
|
|
|
action "logger $comm $core";
|
|
|
|
};
|
|
|
|
|
2003-01-09 04:05:06 +00:00
|
|
|
*/
|