summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2022-02-17 23:35:48 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-02-22 15:56:03 +0000
commit6f4a5454ac8fc9d5f1b31c06b6773bc96197dd5e (patch)
tree721cd9dc12505c390ca466abd7edef14f73ca3e2
parent6f74d38dc8d2efab31259b2f280af9484b6d3585 (diff)
downloadcoreboot-6f4a5454ac8fc9d5f1b31c06b6773bc96197dd5e.tar.gz
coreboot-6f4a5454ac8fc9d5f1b31c06b6773bc96197dd5e.tar.bz2
coreboot-6f4a5454ac8fc9d5f1b31c06b6773bc96197dd5e.zip
vc/eltan/security/verified_boot/Makefile: add fmap_config.h dependency
Compiling vboot_check.c depends on fmap_config.h already being generated so add this dependency. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I1fe2b738d76ae16dee3e1ebdca512264303a481c Reviewed-on: https://review.coreboot.org/c/coreboot/+/62148 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Erik van den Bogaert <ebogaert@eltan.com> Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
-rw-r--r--src/vendorcode/eltan/security/verified_boot/Makefile.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vendorcode/eltan/security/verified_boot/Makefile.inc b/src/vendorcode/eltan/security/verified_boot/Makefile.inc
index 9158760322bd..aef81943a8bd 100644
--- a/src/vendorcode/eltan/security/verified_boot/Makefile.inc
+++ b/src/vendorcode/eltan/security/verified_boot/Makefile.inc
@@ -10,6 +10,11 @@ postcar-y += vboot_check.c
romstage-y += vboot_check.c
ramstage-y += vboot_check.c
+$(call src-to-obj,bootblock,$(dir)/vboot_check.c) : $(obj)/fmap_config.h
+$(call src-to-obj,postcar,$(dir)/vboot_check.c) : $(obj)/fmap_config.h
+$(call src-to-obj,romstage,$(dir)/vboot_check.c) : $(obj)/fmap_config.h
+$(call src-to-obj,ramstage,$(dir)/vboot_check.c) : $(obj)/fmap_config.h
+
ifeq ($(CONFIG_VENDORCODE_ELTAN_VBOOT),y)
cbfs-files-y += oemmanifest.bin
oemmanifest.bin-file := $(obj)/oemmanifest.bin