intel/fsp1_0: Declare microcode to be size 0 if it doesn't exist
Change-Id: Id2063fb29226dcb55fe84f680b7b9cb10313ef2b Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/11753 Tested-by: build bot (Jenkins) Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
This commit is contained in:
parent
dd6fa93ded
commit
b20a600ba7
|
@ -29,9 +29,13 @@ ifneq ($(cpu_microcode-objs),)
|
|||
$(objgenerated)/microcode_size.h: $(obj)/cpu_microcode_blob.bin
|
||||
printf "#define MICROCODE_REGION_LENGTH $(call file-size,$<)" > $@.tmp \
|
||||
&& cmp $@.tmp $@ 2>/dev/null || mv $@.tmp $@
|
||||
else
|
||||
$(objgenerated)/microcode_size.h:
|
||||
printf "#define MICROCODE_REGION_LENGTH 0" > $@.tmp \
|
||||
&& cmp $@.tmp $@ 2>/dev/null || mv $@.tmp $@
|
||||
endif
|
||||
|
||||
cpu_incs-$(CONFIG_PLATFORM_USES_FSP1_0) += $(objgenerated)/microcode_size.h
|
||||
endif
|
||||
cpu_incs-$(CONFIG_USE_GENERIC_FSP_CAR_INC) += $(src)/drivers/intel/fsp1_0/cache_as_ram.inc
|
||||
|
||||
ifeq ($(CONFIG_HAVE_FSP_BIN),y)
|
||||
|
|
Loading…
Reference in New Issue