diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2019-07-03 14:21:08 +0000 |
---|---|---|
committer | Stephane Desneux <stephane.desneux@iot.bzh> | 2019-07-03 14:27:46 +0000 |
commit | 300a74f8152264bec0b9e539fbd91e82b481f5a4 (patch) | |
tree | b59dc6ec824478e3323479918b98b2f4dbd6a97a /meta-agl-profile-core/recipes-platform/packagegroups | |
parent | 0723ce701269d7608df022ad0cfc9e2f1ea76272 (diff) |
agl-core-connectivity: add avahi-daemon when agl-devel feature is set
Accessing the boards using .local addresses is convenient. But avahi-daemon is
not pulled explicitely in images.
This patch adds packagegroup-base-zeroconf (containing avahi-daemon) in the
core image only when agl-devel feature is set and zeroconf is enabled in
DISTRO_FEATURES
Bug-AGL: SPEC-2592
Change-Id: Iea899d98cd0d8628f9533641f7b42c04f4580c64
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'meta-agl-profile-core/recipes-platform/packagegroups')
-rw-r--r-- | meta-agl-profile-core/recipes-platform/packagegroups/packagegroup-agl-core-connectivity.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-agl-profile-core/recipes-platform/packagegroups/packagegroup-agl-core-connectivity.bb b/meta-agl-profile-core/recipes-platform/packagegroups/packagegroup-agl-core-connectivity.bb index 6ef68ca90..03f7e40cd 100644 --- a/meta-agl-profile-core/recipes-platform/packagegroups/packagegroup-agl-core-connectivity.bb +++ b/meta-agl-profile-core/recipes-platform/packagegroups/packagegroup-agl-core-connectivity.bb @@ -9,11 +9,14 @@ PACKAGES = "\ ALLOW_EMPTY_${PN} = "1" +PKGGROUP_ZEROCONF = "${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'packagegroup-base-zeroconf', '', d)}" + RDEPENDS_${PN} += "\ bluez5-obex \ dhcp-server \ ${@bb.utils.contains('VIRTUAL-RUNTIME_net_manager','connman','connman connman-client connman-tests connman-tools connman-ncurses','',d)} \ ${@bb.utils.contains("DISTRO_FEATURES", "3g", "libqmi", "", d)} \ + ${@bb.utils.contains('DISTRO_FEATURES', 'agl-devel', '${PKGGROUP_ZEROCONF}', '', d)} \ neard \ neardal-tools \ rtl-sdr \ |