vboot: Compile loader in postcar as well
Change-Id: Ide3202fca75c77ccebf17d61d93945ba7834a13b Signed-off-by: Andrey Petrov <andrey.petrov@intel.com> Reviewed-on: https://review.coreboot.org/14398 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
736aa74faf
commit
60c64325cc
|
@ -20,11 +20,13 @@ bootblock-y += vboot_loader.c
|
|||
romstage-y += vboot_loader.c
|
||||
ramstage-y += vboot_loader.c
|
||||
verstage-y += vboot_loader.c
|
||||
postcar-y += vboot_loader.c
|
||||
|
||||
bootblock-y += ../vboot_common.c
|
||||
verstage-y += ../vboot_common.c
|
||||
romstage-y += ../vboot_common.c
|
||||
ramstage-y += ../vboot_common.c
|
||||
postcar-y += ../vboot_common.c
|
||||
|
||||
bootblock-y += common.c
|
||||
libverstage-y += vboot_logic.c
|
||||
|
@ -38,6 +40,7 @@ endif
|
|||
romstage-y += vboot_handoff.c common.c
|
||||
|
||||
ramstage-y += common.c
|
||||
postcar-y += common.c
|
||||
|
||||
ifeq ($(CONFIG_SEPARATE_VERSTAGE),y)
|
||||
VB_FIRMWARE_ARCH := $(ARCHDIR-$(ARCH-verstage-y))
|
||||
|
|
Loading…
Reference in New Issue