summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/ofono/ofono_1.31.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-15 03:46:34 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-18 12:42:58 +0100
commit74267b69b30e5ffe9448aa0b18900385dc310bcf (patch)
tree8a8f9f311c49764cb196eec2441b3fac5dd7eb52 /meta/recipes-connectivity/ofono/ofono_1.31.bb
parentfb26a7c9b86488f46aef707c7836c2cd406d9b8a (diff)
downloadpoky-74267b69b30e5ffe9448aa0b18900385dc310bcf.tar.gz
ofono: upgrade 1.31 -> 1.32
(From OE-Core rev: c0e635c85b2d1eedcc515a89e949b8c9e43d8881) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/ofono/ofono_1.31.bb')
-rw-r--r--meta/recipes-connectivity/ofono/ofono_1.31.bb56
1 files changed, 0 insertions, 56 deletions
diff --git a/meta/recipes-connectivity/ofono/ofono_1.31.bb b/meta/recipes-connectivity/ofono/ofono_1.31.bb
deleted file mode 100644
index 2425ef76a6..0000000000
--- a/meta/recipes-connectivity/ofono/ofono_1.31.bb
+++ /dev/null
@@ -1,56 +0,0 @@
1SUMMARY = "open source telephony"
2DESCRIPTION = "oFono is a stack for mobile telephony devices on Linux. oFono supports speaking to telephony devices through specific drivers, or with generic AT commands."
3HOMEPAGE = "http://www.ofono.org"
4BUGTRACKER = "https://01.org/jira/browse/OF"
5LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \
7 file://src/ofono.h;beginline=1;endline=20;md5=3ce17d5978ef3445def265b98899c2ee"
8DEPENDS = "dbus glib-2.0 udev mobile-broadband-provider-info ell"
9
10SRC_URI = "\
11 ${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.xz \
12 file://ofono \
13 file://0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch \
14 file://0002-mbim-Fix-build-with-ell-0.39-by-restoring-unlikely-m.patch \
15"
16SRC_URI[md5sum] = "1c26340e3c6ed132cc812595081bb3dc"
17SRC_URI[sha256sum] = "a15c5d28096c10eb30e47a68b6dc2e7c4a5a99d7f4cfedf0b69624f33d859e9b"
18
19inherit autotools pkgconfig update-rc.d systemd gobject-introspection-data
20
21INITSCRIPT_NAME = "ofono"
22INITSCRIPT_PARAMS = "defaults 22"
23SYSTEMD_SERVICE_${PN} = "ofono.service"
24
25PACKAGECONFIG ??= "\
26 ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \
27 ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} \
28"
29PACKAGECONFIG[systemd] = "--with-systemdunitdir=${systemd_unitdir}/system/,--with-systemdunitdir="
30PACKAGECONFIG[bluez] = "--enable-bluetooth, --disable-bluetooth, bluez5"
31
32EXTRA_OECONF += "--enable-test --enable-external-ell"
33
34do_configure_prepend() {
35 bbnote "Removing bundled ell from ${S}/ell to prevent including it"
36 rm -rf ${S}/ell
37}
38
39do_install_append() {
40 install -d ${D}${sysconfdir}/init.d/
41 install -m 0755 ${WORKDIR}/ofono ${D}${sysconfdir}/init.d/ofono
42}
43
44PACKAGES =+ "${PN}-tests"
45
46FILES_${PN} += "${systemd_unitdir}"
47FILES_${PN}-tests = "${libdir}/${BPN}/test"
48
49RDEPENDS_${PN} += "dbus"
50RDEPENDS_${PN}-tests = "\
51 python3-core \
52 python3-dbus \
53 ${@bb.utils.contains('GI_DATA_ENABLED', 'True', 'python3-pygobject', '', d)} \
54"
55
56RRECOMMENDS_${PN} += "kernel-module-tun mobile-broadband-provider-info"