summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kelly <mkelly@xevo.com>2018-05-08 12:31:41 -0700
committerArmin Kuster <akuster808@gmail.com>2018-05-17 08:20:48 -0700
commit395278591de1d050c653e1288ddfdcd8b152d34d (patch)
treedbfb5635d08812af2bb34b837a93e9ab643402ec
parentf79a1bf458e548a0d45b65e354ba673e7a5b1bcd (diff)
downloadmeta-openembedded-395278591de1d050c653e1288ddfdcd8b152d34d.tar.gz
modemmanager: fix mbim disable string
The current string used to disable mbim is "--enable-mbim=no", which is producing a warning. It should be "--with-mdim=no", so change it. Signed-off-by: Martin Kelly <mkelly@xevo.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/recipes-connectivity/modemmanager/modemmanager_1.7.991.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.7.991.bb b/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.7.991.bb
index 4f9400169..b1a718dbf 100644
--- a/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.7.991.bb
+++ b/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.7.991.bb
@@ -25,7 +25,7 @@ PACKAGECONFIG ??= "mbim qmi polkit \
25PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,," 25PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,,"
26PACKAGECONFIG[polkit] = "--with-polkit=yes,--with-polkit=no,polkit" 26PACKAGECONFIG[polkit] = "--with-polkit=yes,--with-polkit=no,polkit"
27# Support WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol. 27# Support WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol.
28PACKAGECONFIG[mbim] = "--with-mbim,--enable-mbim=no,libmbim" 28PACKAGECONFIG[mbim] = "--with-mbim,--with-mbim=no,libmbim"
29# Support WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol. 29# Support WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol.
30PACKAGECONFIG[qmi] = "--with-qmi,--without-qmi,libqmi" 30PACKAGECONFIG[qmi] = "--with-qmi,--without-qmi,libqmi"
31 31