Dies schrieb Ormund Williams ([email protected]):

> I used to create a group called isp then add the following lines to
> udev's permissions.rules file:
>         # AvrISP
>         SUBSYSTEM=="usb_device", GROUP="isp", \
>               ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2104"

Do not add lines to a file; that might provoke problems on upgrades.
Simply create a new file in /etc/udev/rules.d/:

root@exa:/etc/udev/rules.d# cat z53-isp-usb.rules 
SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", SYMLINK+="ispdev", GROUP="isp"

That way, my programmer can always be accessed through /dev/ispdev by anyone
in the group isp.

_______________________________________________
avrdude-dev mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/avrdude-dev

Reply via email to