Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/62740 )
Change subject: mb/google/guybrush: Fix building with VBOOT_STARTS_IN_BOOTBLOCK ......................................................................
mb/google/guybrush: Fix building with VBOOT_STARTS_IN_BOOTBLOCK
The verstage.c file contains PSP verstage specific code. We don't need it when using x86 verstage.
BUG=b:193050286 TEST=Build and boot guybrush with x86 verstage
Signed-off-by: Raul E Rangel rrangel@chromium.org Change-Id: I6dc928cdce0c922bb18f4479b993c89dff106070 --- M src/mainboard/google/guybrush/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/40/62740/1
diff --git a/src/mainboard/google/guybrush/Makefile.inc b/src/mainboard/google/guybrush/Makefile.inc index 56ef2b3..cdfb53b 100644 --- a/src/mainboard/google/guybrush/Makefile.inc +++ b/src/mainboard/google/guybrush/Makefile.inc @@ -12,7 +12,7 @@
all-y += spi_speeds.c
-verstage-y += verstage.c +verstage-$(CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK) += verstage.c verstage-$(CONFIG_CHROMEOS) += chromeos.c
subdirs-y += variants/baseboard