Hi Aidan,
On 12/09/11 13:21, [email protected] wrote:
> ATTR{idVendor}=="03eb", ATTR{idProduct}=="2fee", MODE="666"
> ATTR{idVendor}=="03eb", ATTR{idProduct}=="2ff0", MODE="666"
...
> SYSFS{idVendor}=="03eb", SYSFS{idProduct}=="2fee", MODE="666"
> SYSFS{idVendor}=="03eb", SYSFS{idProduct}=="2ff0", MODE="666"

I can't remember the full ins & outs of it all, but I have had to add
these in on occasion myself. This is one that I've got for a USB
debugging tool:

andre@dunstan:~$ cat /etc/udev/rules.d/20-jtag-key.rules
# Amontec JtagKey
SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="cff8",
GROUP="plugdev"

You'll see that we do it slightly differently - we assign it to a group
'plugdev' (which basically ever user is a member of), so the 0660
permissions work out ok.

You shouldn't need to restart anything, as udev picks these up
dynamically. However if you do it by group assignment be aware that
adding yourself to a new group won't take effect until you log out &
back in again.

Regards,
Andre

_______________________________________________
Linux-users mailing list
[email protected]
http://lists.canterbury.ac.nz/mailman/listinfo/linux-users

Reply via email to