summaryrefslogtreecommitdiffhomepage
path: root/digital/dev2/doc
diff options
context:
space:
mode:
authorNicolas Schodet2012-12-18 22:29:25 +0100
committerNicolas Schodet2012-12-23 12:42:25 +0100
commit1c680081494a36d714655acee42f1995f804de7f (patch)
treea831047457d78429a7053592db7a9be8ee9b2837 /digital/dev2/doc
parent5e8e8213e0cb670efdba096c2c44430cbfc0920b (diff)
digital: use Openmoko donated USB VID & PID
Diffstat (limited to 'digital/dev2/doc')
-rw-r--r--digital/dev2/doc/dev2.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/digital/dev2/doc/dev2.txt b/digital/dev2/doc/dev2.txt
index 2eed3b3d..9d499172 100644
--- a/digital/dev2/doc/dev2.txt
+++ b/digital/dev2/doc/dev2.txt
@@ -9,7 +9,7 @@ As there is no driver for the dev2 board in the kernel and there is not enough
USB end points in the AT90USB162 to implement a ACM class device with two
serial ports, you should load the generic serial driver:
- modprobe usbserial vendor=0x03eb product=0x204e
+ modprobe usbserial vendor=0x1d50 product=0x6052
Then look at kernel messages to locate the new serial devices (/dev/ttyUSBx).
@@ -19,9 +19,9 @@ be detected.
To let udev do this automatically for you, you can add this to the file
`/etc/udev/rules.d/70-apbteam.rules`:
- SUBSYSTEM=="usb", ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="204e", \
+ SUBSYSTEM=="usb", ACTION=="add", ATTR{idVendor}=="1d50", ATTR{idProduct}=="6052", \
ATTR{manufacturer}=="APBTeam", MODE="0660", GROUP="plugdev", \
- RUN+="/sbin/modprobe usbserial vendor=0x03eb product=0x204e"
+ RUN+="/sbin/modprobe usbserial vendor=0x1d50 product=0x6052"
This will also automatically authorize the `plugdev` group to use the device
without root access.