mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-13 13:20:45 +08:00
1ecb00f6c3
As called out by running `udevadm verify`, the existing rules violate the requirement that sections are separated by commas, (not whitespace).
22 lines
1,005 B
Text
22 lines
1,005 B
Text
# Proxmark3 linux modem-manager de-confliction file
|
|
#
|
|
# copy this file to /etc/udev/rules.d (or add the entry to the end of an existing file)
|
|
# and restart udev hotplug:
|
|
#
|
|
# 'sudo udevadm control --reload-rules'
|
|
#
|
|
|
|
# proxmark3
|
|
ACTION!="add|change", GOTO="pm3_usb_device_blacklist_end"
|
|
SUBSYSTEM!="tty", GOTO="pm3_ignore"
|
|
|
|
ATTRS{idVendor}=="2d2d", ATTRS{idProduct}=="504d", ENV{ID_MM_DEVICE_IGNORE}="1", SYMLINK+="pm3-%n", MODE="660", GROUP="dialout"
|
|
ATTRS{idVendor}=="9ac4", ATTRS{idProduct}=="4b8f", ENV{ID_MM_DEVICE_IGNORE}="1", SYMLINK+="pm3-%n", MODE="660", GROUP="dialout"
|
|
ATTRS{idVendor}=="502d", ATTRS{idProduct}=="502d", ENV{ID_MM_DEVICE_IGNORE}="1", SYMLINK+="pm3-%n", MODE="660", GROUP="dialout"
|
|
|
|
LABEL="pm3_ignore"
|
|
ATTRS{idVendor}=="2d2d", ATTRS{idProduct}=="504d", ENV{ID_MM_DEVICE_IGNORE}="1"
|
|
ATTRS{idVendor}=="9ac4", ATTRS{idProduct}=="4b8f", ENV{ID_MM_DEVICE_IGNORE}="1"
|
|
ATTRS{idVendor}=="502d", ATTRS{idProduct}=="502d", ENV{ID_MM_DEVICE_IGNORE}="1"
|
|
|
|
LABEL="pm3_usb_device_blacklist_end"
|