]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/usbd.conf
The decision to use an HTTP proxy for FTP documents belongs in the FTP code
[FreeBSD/FreeBSD.git] / etc / usbd.conf
1 # Configuration file the USB daemon.
2 #
3 # See usbd.conf(5) for the description of the format of the file.
4 #
5 # $FreeBSD$
6
7 # Firmware download into the ActiveWire board. After the firmware download is
8 # done the device detaches and reappears as something new and shiny.
9 #
10 device "ActiveWire board, firmware download"
11         vendor  0x0854
12         product 0x0100
13         release 0x0000
14         attach "/usr/local/bin/ezdownload -f /usr/local/share/usb/firmware/0854.0100.0_01.hex ${DEVNAME}"
15
16 # Firmware download for Entrega Serial DB25 adapter.
17 #
18 device "Entrega Serial with UART"
19         product 0x8001
20         vendor  0x1645
21         release 0x0101
22         attach "if ! kldstat -n usio > /dev/null 2>&1 ; then kldload usio; fi"
23         attach "/usr/sbin/ezdownload -v -f /usr/share/usb/firmware/1645.8001.0101 /dev/${DEVNAME}"
24
25
26 # The entry for the cue, kue and aue ethernet interface drivers.
27 device "USB ethernet"
28         devname "[ack]ue[0-9]+"
29         attach "dhclient ${DEVNAME}"
30         detach "killall dhclient"
31
32 # The entry below is for the Logitech mouse. Replace the product and vendor
33 # id (and the device name of course) with the data for your mouse.
34 #
35 device "Mouse"
36         devname "ums[0-9]+"
37         attach "/usr/sbin/moused -p /dev/${DEVNAME} -I /var/run/moused.${DEVNAME}.pid"
38
39 # The fallthrough entry: Nothing is specified, nothing is done.  And it isn't
40 # necessary at all :-).  Just for pretty printing in debugging mode.
41 #
42 device "USB device"