aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Van Assche <me@dylanvanassche.be>2021-12-26 11:35:55 +0100
committerAleksander Morgado <aleksander@aleksander.es>2022-01-11 08:41:37 +0000
commit3f76b3b7d1abe10d2809c80891789cde81de5fa2 (patch)
tree11a84306c40e7d156a95da8b71a6c8a3eea7a174
parentfb0dfb875172225d3bb82906a49118ceb7f938ba (diff)
plugins/quectel/mm-broadband-modem-qmi-quectel: ignore carrier revision
Quectel EG25-G QMI modem firmware revisions are not matched with carrier configs. Different VoLTE profiles might be selected by the user causing the carrier config revision to change. Since fwupd uses this string for firmware updates, it gets confused and thinks the user has an update available.
-rw-r--r--plugins/quectel/mm-broadband-modem-qmi-quectel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/quectel/mm-broadband-modem-qmi-quectel.c b/plugins/quectel/mm-broadband-modem-qmi-quectel.c
index 8cb290c5..676006f4 100644
--- a/plugins/quectel/mm-broadband-modem-qmi-quectel.c
+++ b/plugins/quectel/mm-broadband-modem-qmi-quectel.c
@@ -52,6 +52,8 @@ mm_broadband_modem_qmi_quectel_new (const gchar *device,
MM_BASE_MODEM_PLUGIN, plugin,
MM_BASE_MODEM_VENDOR_ID, vendor_id,
MM_BASE_MODEM_PRODUCT_ID, product_id,
+ /* exclude carrier information */
+ MM_IFACE_MODEM_FIRMWARE_IGNORE_CARRIER, TRUE,
/* QMI bearer supports NET only */
MM_BASE_MODEM_DATA_NET_SUPPORTED, TRUE,
MM_BASE_MODEM_DATA_TTY_SUPPORTED, FALSE,