console: Update for vboot before bootblock
Exclude pieces of console code from the vboot if running before bootlock. The PSP verstage code will re-implement some of these in its own code. BUG=b:123887623 TEST=Build with following patches Signed-off-by: Martin Roth <martin@coreboot.org> Change-Id: Ifc9fb0810e0816fe0a68e52287eda6145043a619 Reviewed-on: https://review.coreboot.org/c/coreboot/+/41815 Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
b9c2ecffda
commit
baba3e9610
1 changed files with 4 additions and 2 deletions
|
@ -11,12 +11,14 @@ smm-$(CONFIG_DEBUG_SMI) += init.c console.c vtxprintf.c printk.c
|
|||
smm-y += die.c
|
||||
smm-y += post.c
|
||||
|
||||
verstage-y += init.c
|
||||
ifneq ($(CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK),y)
|
||||
verstage-y += printk.c
|
||||
verstage-y += vtxprintf.c vsprintf.c
|
||||
verstage-y += console.c
|
||||
endif
|
||||
verstage-y += post.c
|
||||
verstage-y += die.c
|
||||
verstage-y += init.c
|
||||
verstage-y += vtxprintf.c vsprintf.c
|
||||
|
||||
romstage-y += vtxprintf.c printk.c vsprintf.c
|
||||
romstage-y += init.c console.c
|
||||
|
|
Loading…
Reference in a new issue