3a678c952f
Changes since version 5.52: 5.54: Fix issue with HOGP to accept data only from bonded devices. Fix issue with A2DP sessions being connected at the same time. Fix issue with class UUID matches before connecting profile. Add support for handling MTU auto-tuning option for AVDTP. Add support for new policy for Just-Works repairing. Add support for Enhanced ATT bearer (EATT). 5.53: Fix issue with handling unregistration for advertisment. Fix issue with A2DP and handling recovering process. Fix issue with udpating input device information. Add support for loading blocked keys. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
862 B
Makefile
24 lines
862 B
Makefile
################################################################################
|
|
#
|
|
# bluez5_utils-headers
|
|
#
|
|
################################################################################
|
|
|
|
# Keep the version and patches in sync with bluez5_utils
|
|
BLUEZ5_UTILS_HEADERS_VERSION = 5.54
|
|
BLUEZ5_UTILS_HEADERS_SOURCE = bluez-$(BLUEZ5_UTILS_VERSION).tar.xz
|
|
BLUEZ5_UTILS_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/bluetooth
|
|
BLUEZ5_UTILS_HEADERS_DL_SUBDIR = bluez5_utils
|
|
BLUEZ5_UTILS_HEADERS_LICENSE = GPL-2.0+, LGPL-2.1+
|
|
BLUEZ5_UTILS_HEADERS_LICENSE_FILES = COPYING COPYING.LIB
|
|
|
|
BLUEZ5_UTILS_HEADERS_INSTALL_STAGING = YES
|
|
BLUEZ5_UTILS_HEADERS_INSTALL_TARGET = NO
|
|
|
|
define BLUEZ5_UTILS_HEADERS_INSTALL_STAGING_CMDS
|
|
$(INSTALL) -d $(STAGING_DIR)/usr/include/bluetooth/
|
|
$(INSTALL) -m 644 $(@D)/lib/*.h $(STAGING_DIR)/usr/include/bluetooth/
|
|
endef
|
|
|
|
$(eval $(generic-package))
|