diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2022-02-17 23:35:48 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-02-22 15:56:03 +0000 |
commit | 6f4a5454ac8fc9d5f1b31c06b6773bc96197dd5e (patch) | |
tree | 721cd9dc12505c390ca466abd7edef14f73ca3e2 /src/vendorcode | |
parent | 6f74d38dc8d2efab31259b2f280af9484b6d3585 (diff) |
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>
Diffstat (limited to 'src/vendorcode')
-rw-r--r-- | src/vendorcode/eltan/security/verified_boot/Makefile.inc | 5 |
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 9158760322..aef81943a8 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 |