mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-02 13:59:59 +00:00
libqmi: Update to 1.22.0
Giving up on inline patches for now. >From b1fa081fcd795384e37dd2078072e77070559cf1 Mon Sep 17 00:00:00 2001 From: Glenn Stroz <gstroz@uber.com> Date: Wed, 23 Jan 2019 19:58:01 -0500 Subject: [PATCH] libqmi: Upgrade to 1.22.0 Signed-off-by: Glenn Stroz <gstroz@uber.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
committed by
Khem Raj
parent
5ca9c88503
commit
53b9c69fb3
-41
@@ -1,41 +0,0 @@
|
||||
From 8269f4d86927fbe19e78776a12736680fe9169b6 Mon Sep 17 00:00:00 2001
|
||||
From: Adrian Bunk <bunk@stusta.de>
|
||||
Date: Mon, 1 Oct 2018 16:53:31 +0300
|
||||
Subject: [PATCH] qmi-network: Don't create invalid --wds-start-network when
|
||||
APN is not set
|
||||
|
||||
In 1.20.2 the warning for this was turned into an error.
|
||||
|
||||
(cherry picked from commit 289d8ad6419895e2e1fba3d78a54a0db65da521d)
|
||||
---
|
||||
Upstream-Status: Backport
|
||||
|
||||
utils/qmi-network.in | 12 +++++++-----
|
||||
1 file changed, 7 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/utils/qmi-network.in b/utils/qmi-network.in
|
||||
index bf7bed9..a9e5299 100755
|
||||
--- a/utils/qmi-network.in
|
||||
+++ b/utils/qmi-network.in
|
||||
@@ -334,11 +334,13 @@ start_network ()
|
||||
|
||||
setup_data_format
|
||||
|
||||
- START_NETWORK_ARGS="apn='$APN'"
|
||||
- if [ -n "$APN_USER" ]; then
|
||||
- START_NETWORK_ARGS="${START_NETWORK_ARGS},username='$APN_USER'"
|
||||
- if [ -n "$APN_PASS" ]; then
|
||||
- START_NETWORK_ARGS="${START_NETWORK_ARGS},password='$APN_PASS'"
|
||||
+ if [ -n "$APN" ]; then
|
||||
+ START_NETWORK_ARGS="apn='$APN'"
|
||||
+ if [ -n "$APN_USER" ]; then
|
||||
+ START_NETWORK_ARGS="${START_NETWORK_ARGS},username='$APN_USER'"
|
||||
+ if [ -n "$APN_PASS" ]; then
|
||||
+ START_NETWORK_ARGS="${START_NETWORK_ARGS},password='$APN_PASS'"
|
||||
+ fi
|
||||
fi
|
||||
fi
|
||||
|
||||
--
|
||||
2.7.4
|
||||
|
||||
+3
-3
@@ -12,12 +12,12 @@ DEPENDS = "glib-2.0 glib-2.0-native"
|
||||
inherit autotools pkgconfig bash-completion
|
||||
|
||||
SRC_URI = "http://www.freedesktop.org/software/${BPN}/${BPN}-${PV}.tar.xz \
|
||||
file://0001-qmi-network-Don-t-create-invalid-wds-start-network-w.patch \
|
||||
file://0001-Detect-clang.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "584214476ab75c394160cb85fbccaa1d"
|
||||
SRC_URI[sha256sum] = "c73459ca8bfe1213f8047858d4946fc1f58e164d4f488a7a6904edee25e2ca44"
|
||||
SRC_URI[md5sum] = "35f7e1b03f9b6218a30c78422f72c6ac"
|
||||
SRC_URI[sha256sum] = "21c198b481f1617bb7edb1960d823569de3e38b269dbf513af1b56048cafaa17"
|
||||
|
||||
PACKAGECONFIG ??= "udev mbim"
|
||||
PACKAGECONFIG[udev] = ",--without-udev,libgudev"
|
||||
PACKAGECONFIG[mbim] = "--enable-mbim-qmux,--disable-mbim-qmux,libmbim"
|
||||
|
||||
Reference in New Issue
Block a user