Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/32383
Change subject: [TEST]arch/x86/car.ld: Make the vboot tpm log symbols conditional ......................................................................
[TEST]arch/x86/car.ld: Make the vboot tpm log symbols conditional
Without vboot there is no need for these symbols.
Change-Id: I96391b7817c79f760713c67bc469164b5514879e Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/arch/x86/car.ld 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/83/32383/1
diff --git a/src/arch/x86/car.ld b/src/arch/x86/car.ld index 37fb087..93803a1 100644 --- a/src/arch/x86/car.ld +++ b/src/arch/x86/car.ld @@ -34,7 +34,9 @@ /* Vboot measured boot TCPA log measurements. * Needs to be transferred until CBMEM is available */ +#if CONFIG(VBOOT) VBOOT2_TPM_LOG(., 2K) +#endif /* Stack for CAR stages. Since it persists across all stages that * use CAR it can be reused. The chipset/SoC is expected to provide * the stack size. */