diff options
author | David (Pololu) <dev-david@pololu.com> | 2014-04-01 16:26:26 -0700 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2014-04-02 08:54:17 +0200 |
commit | 09d92ef3338effa85eff7f4efa416afe11f780a0 (patch) | |
tree | 1803d59f755b851911ef15d1a0b104c0cd21415a | |
parent | 1af1d1fb780f9f53f4c924818d261dc3107c2471 (diff) |
blacklist: All devices from Pololu Corporation except some possible future products.
We make many USB virtual COM port devices, none of which are modems.
ModemManager's automatic attempts to access those devices can cause
problems.
That might change in the future, so we have left two potential
future product IDs off of the blacklist.
-rw-r--r-- | src/77-mm-usb-device-blacklist.rules | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/77-mm-usb-device-blacklist.rules b/src/77-mm-usb-device-blacklist.rules index 59795b63..7bb894f5 100644 --- a/src/77-mm-usb-device-blacklist.rules +++ b/src/77-mm-usb-device-blacklist.rules @@ -88,6 +88,12 @@ ATTRS{idVendor}=="1b4f", ATTRS{idProduct}=="9208", ENV{ID_MM_DEVICE_IGNORE}="1" ATTRS{idVendor}=="239a", ATTRS{idProduct}=="0004", ENV{ID_MM_DEVICE_IGNORE}="1" ATTRS{idVendor}=="239a", ATTRS{idProduct}=="8004", ENV{ID_MM_DEVICE_IGNORE}="1" +# All devices from Pololu Corporation +# except some possible future products. +ATTRS{idVendor}=="1ffb", ENV{ID_MM_DEVICE_IGNORE}="1" +ATTRS{idVendor}=="1ffb", ATTRS{idProduct}=="00ad", ENV{ID_MM_DEVICE_IGNORE}="0" +ATTRS{idVendor}=="1ffb", ATTRS{idProduct}=="00ae", ENV{ID_MM_DEVICE_IGNORE}="0" + # Altair U-Boot device ATTRS{idVendor}=="0216", ATTRS{idProduct}=="0051", ENV{ID_MM_DEVICE_IGNORE}="1" |