diff options
author | Adrian Bunk <bunk@stusta.de> | 2018-10-21 17:34:24 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-10-21 08:10:42 -0700 |
commit | 42ab6b30ec52a12a6b9ce1c661d126a66b9ded9c (patch) | |
tree | 5afa12a6a912bbb08af38d94686bc95c7dfe8cb0 /meta-oe/recipes-connectivity/modemmanager/modemmanager_1.8.2.bb | |
parent | 8a824ee1f40e4995f7a8634f7cbbd3a38841131f (diff) | |
download | meta-openembedded-42ab6b30ec52a12a6b9ce1c661d126a66b9ded9c.tar.gz |
modemmanager: Upgrade to 1.8.2
Obsolete patch dropped, upstream solved this differently:
Use realpath() instead of canonicalize_filename(),
fixing build with musl libc.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-connectivity/modemmanager/modemmanager_1.8.2.bb')
-rw-r--r-- | meta-oe/recipes-connectivity/modemmanager/modemmanager_1.8.2.bb | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.8.2.bb b/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.8.2.bb new file mode 100644 index 000000000..82e3178bd --- /dev/null +++ b/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.8.2.bb | |||
@@ -0,0 +1,51 @@ | |||
1 | SUMMARY = "ModemManager is a daemon controlling broadband devices/connections" | ||
2 | DESCRIPTION = "ModemManager is a DBus-activated daemon which controls mobile broadband (2G/3G/4G) devices and connections" | ||
3 | HOMEPAGE = "http://www.freedesktop.org/wiki/Software/ModemManager/" | ||
4 | LICENSE = "GPL-2.0 & LGPL-2.1" | ||
5 | LIC_FILES_CHKSUM = " \ | ||
6 | file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
7 | file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \ | ||
8 | " | ||
9 | |||
10 | inherit gnomebase gettext systemd vala gobject-introspection bash-completion | ||
11 | |||
12 | DEPENDS = "glib-2.0 libgudev dbus-glib intltool-native" | ||
13 | |||
14 | SRC_URI = "http://www.freedesktop.org/software/ModemManager/ModemManager-${PV}.tar.xz \ | ||
15 | " | ||
16 | |||
17 | SRC_URI[md5sum] = "a49c9f73e46c7b89e5efedda250d22c0" | ||
18 | SRC_URI[sha256sum] = "96f2a5f0ed15532b4c4c185b756fdc0326e7c2027cea26a1264f91e098260f80" | ||
19 | |||
20 | S = "${WORKDIR}/ModemManager-${PV}" | ||
21 | |||
22 | PACKAGECONFIG ??= "mbim qmi polkit \ | ||
23 | ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \ | ||
24 | " | ||
25 | |||
26 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,," | ||
27 | PACKAGECONFIG[polkit] = "--with-polkit=yes,--with-polkit=no,polkit" | ||
28 | # Support WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol. | ||
29 | PACKAGECONFIG[mbim] = "--with-mbim,--with-mbim=no,libmbim" | ||
30 | # Support WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol. | ||
31 | PACKAGECONFIG[qmi] = "--with-qmi,--without-qmi,libqmi" | ||
32 | |||
33 | FILES_${PN} += " \ | ||
34 | ${datadir}/icons \ | ||
35 | ${datadir}/polkit-1 \ | ||
36 | ${datadir}/dbus-1 \ | ||
37 | ${libdir}/ModemManager \ | ||
38 | ${systemd_unitdir}/system \ | ||
39 | " | ||
40 | |||
41 | FILES_${PN}-dev += " \ | ||
42 | ${libdir}/ModemManager/*.la \ | ||
43 | " | ||
44 | |||
45 | FILES_${PN}-staticdev += " \ | ||
46 | ${libdir}/ModemManager/*.a \ | ||
47 | " | ||
48 | |||
49 | FILES_${PN}-dbg += "${libdir}/ModemManager/.debug" | ||
50 | |||
51 | SYSTEMD_SERVICE_${PN} = "ModemManager.service" | ||