summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/ofono
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-28 23:28:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-02 15:44:10 +0100
commitbb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch)
tree76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-connectivity/ofono
parentfcc456ee4b8f619134abb4649db53c638074082c (diff)
downloadpoky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz
Convert to new override syntax
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/ofono')
-rw-r--r--meta/recipes-connectivity/ofono/ofono_1.32.bb16
1 files changed, 8 insertions, 8 deletions
diff --git a/meta/recipes-connectivity/ofono/ofono_1.32.bb b/meta/recipes-connectivity/ofono/ofono_1.32.bb
index f3d875b204..c3db52d944 100644
--- a/meta/recipes-connectivity/ofono/ofono_1.32.bb
+++ b/meta/recipes-connectivity/ofono/ofono_1.32.bb
@@ -19,7 +19,7 @@ inherit autotools pkgconfig update-rc.d systemd gobject-introspection-data
19 19
20INITSCRIPT_NAME = "ofono" 20INITSCRIPT_NAME = "ofono"
21INITSCRIPT_PARAMS = "defaults 22" 21INITSCRIPT_PARAMS = "defaults 22"
22SYSTEMD_SERVICE_${PN} = "ofono.service" 22SYSTEMD_SERVICE:${PN} = "ofono.service"
23 23
24PACKAGECONFIG ??= "\ 24PACKAGECONFIG ??= "\
25 ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \ 25 ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \
@@ -30,26 +30,26 @@ PACKAGECONFIG[bluez] = "--enable-bluetooth, --disable-bluetooth, bluez5"
30 30
31EXTRA_OECONF += "--enable-test --enable-external-ell" 31EXTRA_OECONF += "--enable-test --enable-external-ell"
32 32
33do_configure_prepend() { 33do_configure:prepend() {
34 bbnote "Removing bundled ell from ${S}/ell to prevent including it" 34 bbnote "Removing bundled ell from ${S}/ell to prevent including it"
35 rm -rf ${S}/ell 35 rm -rf ${S}/ell
36} 36}
37 37
38do_install_append() { 38do_install:append() {
39 install -d ${D}${sysconfdir}/init.d/ 39 install -d ${D}${sysconfdir}/init.d/
40 install -m 0755 ${WORKDIR}/ofono ${D}${sysconfdir}/init.d/ofono 40 install -m 0755 ${WORKDIR}/ofono ${D}${sysconfdir}/init.d/ofono
41} 41}
42 42
43PACKAGES =+ "${PN}-tests" 43PACKAGES =+ "${PN}-tests"
44 44
45FILES_${PN} += "${systemd_unitdir}" 45FILES:${PN} += "${systemd_unitdir}"
46FILES_${PN}-tests = "${libdir}/${BPN}/test" 46FILES:${PN}-tests = "${libdir}/${BPN}/test"
47 47
48RDEPENDS_${PN} += "dbus" 48RDEPENDS:${PN} += "dbus"
49RDEPENDS_${PN}-tests = "\ 49RDEPENDS:${PN}-tests = "\
50 python3-core \ 50 python3-core \
51 python3-dbus \ 51 python3-dbus \
52 ${@bb.utils.contains('GI_DATA_ENABLED', 'True', 'python3-pygobject', '', d)} \ 52 ${@bb.utils.contains('GI_DATA_ENABLED', 'True', 'python3-pygobject', '', d)} \
53" 53"
54 54
55RRECOMMENDS_${PN} += "kernel-module-tun mobile-broadband-provider-info" 55RRECOMMENDS:${PN} += "kernel-module-tun mobile-broadband-provider-info"