src/cpu: Fix location for cpu_microcode_blob.bin in COREBOOT CBFS only
The CPU_MICROCODE_BLOB_CBFS_LOC should only be specified for COREBOOT CBFS, not for other CBFS. BUG=none BRANCH=none TEST=Built and boot kunimitsu Change-Id: I58bb289e6c9add2647876ef817b7920f6e7b427a Signed-off-by: Barnali Sarkar <barnali.sarkar@intel.com> Reviewed-on: https://review.coreboot.org/16932 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
fe3eabcaed
commit
4aa295ca28
|
@ -46,7 +46,7 @@ cpu_microcode_blob.bin-file ?= $(obj)/cpu_microcode_blob.bin
|
||||||
cpu_microcode_blob.bin-type := microcode
|
cpu_microcode_blob.bin-type := microcode
|
||||||
|
|
||||||
ifneq ($(CONFIG_CPU_MICROCODE_CBFS_LOC),)
|
ifneq ($(CONFIG_CPU_MICROCODE_CBFS_LOC),)
|
||||||
cpu_microcode_blob.bin-position := $(CONFIG_CPU_MICROCODE_CBFS_LOC)
|
cpu_microcode_blob.bin-COREBOOT-position := $(CONFIG_CPU_MICROCODE_CBFS_LOC)
|
||||||
else
|
else
|
||||||
cpu_microcode_blob.bin-align := 16
|
cpu_microcode_blob.bin-align := 16
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue