You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
400 B
12 lines
400 B
2 years ago
|
# udev rules file for ATMEL AVR isp
|
||
|
#
|
||
|
ACTION!="add|change", GOTO="avrisp_rules_end"
|
||
|
SUBSYSTEM!="usb|usb_device", GOTO="avrisp_rules_end"
|
||
|
|
||
|
# AVR Dragon v1
|
||
|
ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2104", MODE="0660", GROUP="plugdev"
|
||
|
# AVR Dragon v2 (the one without shitty voltage regulators)
|
||
|
ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="2107", MODE="0660", GROUP="plugdev"
|
||
|
|
||
|
LABEL="avrisp_rules_end"
|