]>
Commit | Line | Data |
---|---|---|
0ae173ba | 1 | # Proxmark3 linux modem-manager de-confliction file |
2 | # | |
3 | # copy this file to /etc/udev/rules.d (or add the entry to the end of an existing file) | |
4 | # and restart udev hotplug: | |
5 | # | |
6 | # 'sudo udevadm control --reload-rules' | |
7 | # | |
8 | ||
9 | # proxmark3 | |
3fd26a68 MHS |
10 | ACTION!="add|change", GOTO="mm_usb_device_blacklist_end" |
11 | SUBSYSTEM!="tty", GOTO="mm_ignore" | |
12 | ||
13 | ATTRS{idVendor}=="2d2d" ATTRS{idProduct}=="504d", ENV{ID_MM_DEVICE_IGNORE}="1" SYMLINK+="pm3-%n" | |
14 | ||
15 | LABEL="mm_ignore" | |
0ae173ba | 16 | ATTRS{idVendor}=="2d2d" ATTRS{idProduct}=="504d", ENV{ID_MM_DEVICE_IGNORE}="1" |
3fd26a68 MHS |
17 | |
18 | LABEL="mm_usb_device_blacklist_end" |