From 93f23dcd2a4e5e65b246f167cc3941aba04efe26 Mon Sep 17 00:00:00 2001 From: Xynnn007 Date: Thu, 30 Mar 2023 09:12:07 +0800 Subject: [PATCH] osbuilder: add ttrpc as default for attestation-agent `ttrpc=true` parameter tells the Makefile of attestation-agent to build the attestation-agent with ttrpc support Signed-off-by: Xynnn007 --- tools/osbuilder/rootfs-builder/rootfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/osbuilder/rootfs-builder/rootfs.sh b/tools/osbuilder/rootfs-builder/rootfs.sh index c246f40322..f7e992e930 100755 --- a/tools/osbuilder/rootfs-builder/rootfs.sh +++ b/tools/osbuilder/rootfs-builder/rootfs.sh @@ -675,7 +675,7 @@ EOF git fetch --depth=1 origin "${attestation_agent_version}" git checkout FETCH_HEAD [ "${AA_KBC}" == "eaa_kbc" ] && [ "${ARCH}" == "x86_64" ] && LIBC="gnu" - make KBC=${AA_KBC} && make install DESTDIR="${ROOTFS_DIR}/usr/local/bin/" + make KBC=${AA_KBC} ttrpc=true && make install DESTDIR="${ROOTFS_DIR}/usr/local/bin/" popd fi