diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 23:28:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 15:44:10 +0100 |
commit | bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch) | |
tree | 76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-connectivity/ofono | |
parent | fcc456ee4b8f619134abb4649db53c638074082c (diff) | |
download | poky-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.bb | 16 |
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 | ||
20 | INITSCRIPT_NAME = "ofono" | 20 | INITSCRIPT_NAME = "ofono" |
21 | INITSCRIPT_PARAMS = "defaults 22" | 21 | INITSCRIPT_PARAMS = "defaults 22" |
22 | SYSTEMD_SERVICE_${PN} = "ofono.service" | 22 | SYSTEMD_SERVICE:${PN} = "ofono.service" |
23 | 23 | ||
24 | PACKAGECONFIG ??= "\ | 24 | PACKAGECONFIG ??= "\ |
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 | ||
31 | EXTRA_OECONF += "--enable-test --enable-external-ell" | 31 | EXTRA_OECONF += "--enable-test --enable-external-ell" |
32 | 32 | ||
33 | do_configure_prepend() { | 33 | do_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 | ||
38 | do_install_append() { | 38 | do_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 | ||
43 | PACKAGES =+ "${PN}-tests" | 43 | PACKAGES =+ "${PN}-tests" |
44 | 44 | ||
45 | FILES_${PN} += "${systemd_unitdir}" | 45 | FILES:${PN} += "${systemd_unitdir}" |
46 | FILES_${PN}-tests = "${libdir}/${BPN}/test" | 46 | FILES:${PN}-tests = "${libdir}/${BPN}/test" |
47 | 47 | ||
48 | RDEPENDS_${PN} += "dbus" | 48 | RDEPENDS:${PN} += "dbus" |
49 | RDEPENDS_${PN}-tests = "\ | 49 | RDEPENDS:${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 | ||
55 | RRECOMMENDS_${PN} += "kernel-module-tun mobile-broadband-provider-info" | 55 | RRECOMMENDS:${PN} += "kernel-module-tun mobile-broadband-provider-info" |