aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/google
diff options
context:
space:
mode:
authorAndrey Petrov <andrey.petrov@intel.com>2016-04-14 14:12:47 -0700
committerMartin Roth <martinroth@google.com>2016-04-20 18:47:11 +0200
commit60c64325cc71db3911460c02097c6a180eca0ecd (patch)
treea912a42e5f0358dc75fc8f8887c9acde2f44cd9a /src/vendorcode/google
parent736aa74fafc4b829fe5114b2e2c7e52efcf9fd3f (diff)
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>
Diffstat (limited to 'src/vendorcode/google')
-rw-r--r--src/vendorcode/google/chromeos/vboot2/Makefile.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vendorcode/google/chromeos/vboot2/Makefile.inc b/src/vendorcode/google/chromeos/vboot2/Makefile.inc
index 2ca8a1adc3..f9348842a2 100644
--- a/src/vendorcode/google/chromeos/vboot2/Makefile.inc
+++ b/src/vendorcode/google/chromeos/vboot2/Makefile.inc
@@ -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))