From 9d3400dd7e4483abb84d068dc8480a34ffc2d75a Mon Sep 17 00:00:00 2001 From: Anuj Mittal Date: Wed, 28 Oct 2020 12:27:38 +0800 Subject: lms: add PACKAGECONFIG to select network manager Allow users to select either ConnMan or Network Manager. Also fixes an issue introduced because of a recent change in 2022.0.0.0 that removed the build time check in favor of explicit options to select the right network manager [1]. [1] https://github.com/intel/lms/commit/1b8fa452644bdedcdd80d3c8741f73ef8191d439 Signed-off-by: Anuj Mittal --- .../openembedded-layer/recipes-bsp/amt/lms_2022.0.0.0.bb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dynamic-layers/openembedded-layer/recipes-bsp/amt/lms_2022.0.0.0.bb b/dynamic-layers/openembedded-layer/recipes-bsp/amt/lms_2022.0.0.0.bb index 4b1e35f0..63bc7b6a 100644 --- a/dynamic-layers/openembedded-layer/recipes-bsp/amt/lms_2022.0.0.0.bb +++ b/dynamic-layers/openembedded-layer/recipes-bsp/amt/lms_2022.0.0.0.bb @@ -12,10 +12,15 @@ COMPATIBLE_HOST_libc-musl = "null" inherit cmake systemd features_check -DEPENDS = "metee ace xerces-c libnl libxml2 glib-2.0 glib-2.0-native connman" +DEPENDS = "metee ace xerces-c libnl libxml2 glib-2.0 glib-2.0-native" EXTRA_OECMAKE += "-DPYTHON_EXECUTABLE=${HOSTTOOLS_DIR}/python3" +# Enable either connman or networkmanager or none but not both. +PACKAGECONFIG ??= "connman" +PACKAGECONFIG[connman] = "-DNETWORK_CN=ON, -DNETWORK_CN=OFF, connman" +PACKAGECONFIG[networkmanager] = "-DNETWORK_NM=ON, -DNETWORK_NM=OFF, networkmanager" + REQUIRED_DISTRO_FEATURES= "systemd" FILES_${PN} += "${datadir}/dbus-1/system-services/*.service" -- cgit v1.2.3-54-g00ecf