diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-08-01 14:37:17 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-08-01 16:32:28 +0200 |
commit | f9d2168c523716a306da5f8a13e13732a6fae6ca (patch) | |
tree | 14739ce2ece9ae78de53940cb46843e6c6dd76c0 | |
parent | 999df00d58df4ea088e19ea9f9dd73a8bb077fb5 (diff) |
telit: disable +CPOL based features in the LN930
Fixes https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/issues/414
-rw-r--r-- | plugins/telit/77-mm-telit-port-types.rules | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/plugins/telit/77-mm-telit-port-types.rules b/plugins/telit/77-mm-telit-port-types.rules index d6d53d4c..25d2d1e1 100644 --- a/plugins/telit/77-mm-telit-port-types.rules +++ b/plugins/telit/77-mm-telit-port-types.rules @@ -1,10 +1,11 @@ # do not edit this file, it will be overwritten on update -ACTION!="add|change|move|bind", GOTO="mm_telit_port_types_end" -SUBSYSTEMS=="usb", ATTRS{idVendor}=="1bc7", GOTO="mm_telit_port_types" -GOTO="mm_telit_port_types_end" +ACTION!="add|change|move|bind", GOTO="mm_telit_end" +SUBSYSTEMS=="usb", ATTRS{idVendor}=="1bc7", GOTO="mm_telit_generic" +SUBSYSTEMS=="usb", ATTRS{idVendor}=="8087", GOTO="mm_telit_intel" +GOTO="mm_telit_end" -LABEL="mm_telit_port_types" +LABEL="mm_telit_generic" SUBSYSTEMS=="usb", ATTRS{bInterfaceNumber}=="?*", ENV{.MM_USBIFNUM}="$attr{bInterfaceNumber}" # UC864-E, UC864-E-AUTO, UC864-K, UC864-WD, UC864-WDU @@ -98,4 +99,11 @@ ATTRS{idVendor}=="1bc7", ATTRS{idProduct}=="1043", ENV{ID_MM_TELIT_PORT_DELAY}=" ATTRS{idVendor}=="1bc7", ATTRS{idProduct}=="1050", ENV{ID_MM_TELIT_PORT_DELAY}="1" ATTRS{idVendor}=="1bc7", ATTRS{idProduct}=="1051", ENV{ID_MM_TELIT_PORT_DELAY}="1" -LABEL="mm_telit_port_types_end" +GOTO="mm_telit_end" + +LABEL="mm_telit_intel" + +# Telit LN930, generic Intel vid:pid in MBIM mode +ATTRS{idVendor}=="8087", ATTRS{idProduct}=="0911", ENV{ID_MM_PREFERRED_NETWORKS_CPOL_DISABLED}="1" + +LABEL="mm_telit_end" |