From: Jörg Krause Date: Mon, 16 Mar 2020 16:52:51 +0000 (+0100) Subject: package/bluez5_utils: add mesh support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a927d233e86c5a240bcd9c5ff5ef30821f8360d6;p=buildroot.git package/bluez5_utils: add mesh support Mesh support was already added in version 5.47. Signed-off-by: Jörg Krause Signed-off-by: Thomas Petazzoni --- diff --git a/package/bluez5_utils/Config.in b/package/bluez5_utils/Config.in index 488a2f79c8..038c6e7095 100644 --- a/package/bluez5_utils/Config.in +++ b/package/bluez5_utils/Config.in @@ -60,6 +60,13 @@ config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HEALTH help Build BlueZ 5.x health plugin +config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MESH + bool "build mesh profile" + select BR2_PACKAGE_JSON_C + select BR2_PACKAGE_READLINE + help + Build BlueZ 5.x mesh plugin + config BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI bool "build midi profile" select BR2_PACKAGE_ALSA_LIB diff --git a/package/bluez5_utils/bluez5_utils.mk b/package/bluez5_utils/bluez5_utils.mk index e328f52eaf..2d95899f44 100644 --- a/package/bluez5_utils/bluez5_utils.mk +++ b/package/bluez5_utils/bluez5_utils.mk @@ -51,6 +51,14 @@ else BLUEZ5_UTILS_CONF_OPTS += --disable-health endif +# enable mesh profile +ifeq ($(BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MESH),y) +BLUEZ5_UTILS_CONF_OPTS += --enable-mesh +BLUEZ5_UTILS_DEPENDENCIES += json-c readline +else +BLUEZ5_UTILS_CONF_OPTS += --disable-mesh +endif + # enable midi profile ifeq ($(BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_MIDI),y) BLUEZ5_UTILS_CONF_OPTS += --enable-midi