[coreboot-gerrit] Patch set updated for coreboot: Makefile: Add uCode binary into FIT Table based on CBFS_EXTERNAL_HEADER

Subrata Banik (subrata.banik@intel.com) gerrit at coreboot.org
Fri Jul 22 11:09:33 CEST 2016


Subrata Banik (subrata.banik at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15783

-gerrit

commit befb2e6005d26b4301cc65404a0af8738f432c6b
Author: Subrata Banik <subrata.banik at intel.com>
Date:   Wed Jul 20 16:57:43 2016 +0530

    Makefile: Add uCode binary into FIT Table based on CBFS_EXTERNAL_HEADER
    
    uCode only getting packed into CBFS but entry was missing
    in FIT Table.
    
    Currently on intel/skylake platform uCode getting added into
    CBFS based on CBFS_EXTERNAL_HEADER config token, hence adding
    the same to bind FIT table.
    
    BRANCH=none
    BUG=chrome-os-partner:55403, chrome-os-partner:53077
    TEST=build an verify FIT table has ucode entry.
    
    Change-Id: I7dd7459ff7d2468f0aff66eb3ee9c2e3d7eda501
    Signed-off-by: Subrata Banik <subrata.banik at intel.com>
---
 Makefile.inc | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/Makefile.inc b/Makefile.inc
index 69c8843..5af85c1 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -774,6 +774,11 @@ ifneq ($(CONFIG_SEABIOS_PS2_TIMEOUT),0)
 endif
 endif
 ifeq ($(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE),y)
+ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_HEADER),y)
+	@printf "    UPDATE-FIT \n"
+	$(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES)
+endif
+
 ifeq ($(CONFIG_CPU_MICROCODE_CBFS_GENERATE),y)
 	@printf "    UPDATE-FIT \n"
 	$(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES)



More information about the coreboot-gerrit mailing list