From aa351bc989813995ff508fea84b32ae6a6923111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Mon, 12 Dec 2022 13:23:34 +0100 Subject: [PATCH] kata-deploy-binaries: Print extra_opts when building shim-v2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will help us, in the future, to debug any possible issue related to the measured rootfs arguments passed to the shim during the build time. Signed-off-by: Fabiano FidĂȘncio --- tools/packaging/kata-deploy/local-build/kata-deploy-binaries.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/packaging/kata-deploy/local-build/kata-deploy-binaries.sh b/tools/packaging/kata-deploy/local-build/kata-deploy-binaries.sh index d44a9a97ad..7db6acba0f 100755 --- a/tools/packaging/kata-deploy/local-build/kata-deploy-binaries.sh +++ b/tools/packaging/kata-deploy/local-build/kata-deploy-binaries.sh @@ -243,6 +243,7 @@ install_cc_shimv2() { extra_opts+=" ROOTMEASURECONFIGTDX=\"${root_measure_config}\"" fi + info "extra_opts: ${extra_opts}" DESTDIR="${destdir}" PREFIX="${cc_prefix}" EXTRA_OPTS="${extra_opts}" "${shimv2_builder}" }