598bfea96d
Fixes CVE-2023-22745. Changelog: https://github.com/tpm2-software/tpm2-tss/blob/3.2.x/CHANGELOG.md Changed the ac_cv_prog variables due to an upstream commit which changed the detection of groupadd/useradd:7fde604383
Buildroot commita85f5f2a41
bumped tpm2-pkcs11 to 1.8.0 which includes a commit bumping the required version of tpm2-tss to >= 3.2940b661e33
Fixes: http://autobuild.buildroot.net/results/6fd/6fddfee6f852ce835c5d1178e6913b6ab1b3fe50/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
46 lines
1.5 KiB
Makefile
46 lines
1.5 KiB
Makefile
################################################################################
|
|
#
|
|
# tpm2-tss
|
|
#
|
|
################################################################################
|
|
|
|
TPM2_TSS_VERSION = 3.2.2
|
|
TPM2_TSS_SITE = https://github.com/tpm2-software/tpm2-tss/releases/download/$(TPM2_TSS_VERSION)
|
|
TPM2_TSS_LICENSE = BSD-2-Clause
|
|
TPM2_TSS_LICENSE_FILES = LICENSE
|
|
TPM2_TSS_CPE_ID_VENDOR = tpm2_software_stack_project
|
|
TPM2_TSS_CPE_ID_PRODUCT = tpm2_software_stack
|
|
TPM2_TSS_INSTALL_STAGING = YES
|
|
TPM2_TSS_DEPENDENCIES = openssl host-pkgconf
|
|
|
|
# 0001-configure-Only-use-CXX-when-fuzzing.patch
|
|
TPM2_TSS_AUTORECONF = YES
|
|
|
|
# systemd-sysusers and systemd-tmpfiles are only used at install time
|
|
# to trigger the creation of users adn tmpfiles, which we do not care
|
|
# about at build time. groupadd, useradd, and setfacl are used in the
|
|
# fallback path when systemd-sysusers or systemd-tmpfiles are missing
|
|
# and their failure is ignored anyway.
|
|
TPM2_TSS_CONF_OPTS = \
|
|
ac_cv_prog_result_groupadd=yes \
|
|
ac_cv_prog_result_setfacl=yes \
|
|
ac_cv_prog_systemd_sysusers=no \
|
|
ac_cv_prog_systemd_tmpfiles=no \
|
|
ac_cv_prog_useradd=yes \
|
|
ac_cv_prog_groupadd=yes \
|
|
--with-crypto=ossl \
|
|
--disable-doxygen-doc \
|
|
--disable-defaultflags
|
|
|
|
# uses C99 code but forgets to pass -std=c99 when --disable-defaultflags is used
|
|
TPM2_TSS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -std=c99"
|
|
|
|
ifeq ($(BR2_PACKAGE_TPM2_TSS_FAPI),y)
|
|
TPM2_TSS_DEPENDENCIES += json-c libcurl
|
|
TPM2_TSS_CONF_OPTS += --enable-fapi
|
|
else
|
|
TPM2_TSS_CONF_OPTS += --disable-fapi
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|