diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-11-22 19:08:36 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-11-22 19:08:36 +0000 |
commit | dc9f13f434aba780015e104994770be48d851370 (patch) | |
tree | 620c1dfc9864226b31304ac3cc0f047f2af75533 /etc | |
parent | 6bba2d7ce1cee332597ed9472743705bdd002b02 (diff) | |
download | FreeBSD-src-dc9f13f434aba780015e104994770be48d851370.zip FreeBSD-src-dc9f13f434aba780015e104994770be48d851370.tar.gz |
Flip the sequence of vendor, product around, to make it consistent
with the rest of the world. This avoids confusion when talking about
VID.PID.RID vs. PID.VID.RID. The former is the sequence normally used.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/usbd.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/usbd.conf b/etc/usbd.conf index a91a69c..8d0adc7 100644 --- a/etc/usbd.conf +++ b/etc/usbd.conf @@ -6,8 +6,8 @@ # the device detaches and reappears as something new and shiny. # device "ActiveWire board, firmware download" - product 0x0100 vendor 0x0854 + product 0x0100 release 0x0000 attach "/usr/local/bin/ezdownload -f /usr/local/share/usb/firmware/0854.0100.0_01.hex" @@ -16,8 +16,8 @@ device "ActiveWire board, firmware download" # the interfaces is not yet exported. # device "USB Zip drive" - product 0x0001 vendor 0x059b + product 0x0001 release 0x0100 attach "/usr/bin/camcontrol rescan bus 0" @@ -25,8 +25,8 @@ device "USB Zip drive" # id (and the device name of course) with the data for your mouse. # device "Logitech N48 USB mouse" - product 0xc001 vendor 0x046d + product 0xc001 attach "/usr/sbin/moused -p /dev/ums0 -I /var/run/moused.ums0.pid" # The fallthrough entry: Nothing is specified, nothing is done. And it isn't |