From 0a3c0f3499aa62bd41c52e958334586146e1e278 Mon Sep 17 00:00:00 2001 From: Yi Zhao Date: Tue, 19 Jan 2021 10:34:27 +0800 Subject: ibmswtpm2: disable camellia algorithm The openssl in oe-core has disabled several deprecated algorithms including camellia. Disable this algorithm to fix the build error. Fixes: TpmToOsslSym.h:185:42: error: unknown type name 'CAMELLIA_KEY' 185 | #define tpmKeyScheduleCAMELLIA CAMELLIA_KEY | ^~~~~~~~~~~~ Signed-off-by: Yi Zhao Signed-off-by: Armin Kuster --- meta-tpm/recipes-tpm2/ibmswtpm2/ibmswtpm2_1637.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-tpm/recipes-tpm2/ibmswtpm2/ibmswtpm2_1637.bb b/meta-tpm/recipes-tpm2/ibmswtpm2/ibmswtpm2_1637.bb index 32afd37..301980d 100644 --- a/meta-tpm/recipes-tpm2/ibmswtpm2/ibmswtpm2_1637.bb +++ b/meta-tpm/recipes-tpm2/ibmswtpm2/ibmswtpm2_1637.bb @@ -27,7 +27,7 @@ SRC_URI[sha512sum] = "007aa415cccf19a2bcf789c426727dc4032dcb04cc9d11eedc231d2add S = "${WORKDIR}/src" -CFLAGS += "-Wno-error=maybe-uninitialized" +CFLAGS += "-Wno-error=maybe-uninitialized -DALG_CAMELLIA=ALG_NO" do_compile () { make CC='${CC}' -- cgit v1.2.3-54-g00ecf