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>
This commit is contained in:
parent
6f74d38dc8
commit
6f4a5454ac
|
@ -10,6 +10,11 @@ postcar-y += vboot_check.c
|
||||||
romstage-y += vboot_check.c
|
romstage-y += vboot_check.c
|
||||||
ramstage-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)
|
ifeq ($(CONFIG_VENDORCODE_ELTAN_VBOOT),y)
|
||||||
cbfs-files-y += oemmanifest.bin
|
cbfs-files-y += oemmanifest.bin
|
||||||
oemmanifest.bin-file := $(obj)/oemmanifest.bin
|
oemmanifest.bin-file := $(obj)/oemmanifest.bin
|
||||||
|
|
Loading…
Reference in New Issue