mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
9 lines
513 B
Plaintext
9 lines
513 B
Plaintext
# allow "plugdev" group read/write access to ADI PlutoSDR devices
|
|
# DFU Device
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="0456", ATTRS{idProduct}=="b674", MODE="0666", GROUP="plugdev"
|
|
# SDR Device
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="0456", ATTRS{idProduct}=="b673", MODE="0666", GROUP="plugdev"
|
|
# tell the ModemManager (part of the NetworkManager suite) that the device is not a modem,
|
|
# and don't send AT commands to it
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="0456", ATTRS{idProduct}=="b673", ENV{ID_MM_DEVICE_IGNORE}="1"
|