[coreboot-gerrit] New patch to review for coreboot: cpu: fix cpu_microcode class

Aaron Durbin (adurbin@chromium.org) gerrit at coreboot.org
Tue Sep 8 21:33:07 CET 2015


Aaron Durbin (adurbin at chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11596

-gerrit

commit 8685eab15751b6701559c45697dc4a41f0dff1d8
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Tue Sep 8 16:30:05 2015 -0500

    cpu: fix cpu_microcode class
    
    The cpu_micrcode was never being added as a class proper.
    Also, there's no reason defining another class compiler
    which overrides the first one. The microcode files are just
    built into a binary and added to cbfs. There's no reason to
    change compilers.
    
    Change-Id: Icb47d509832e7433092a814bad020f8d66f2a299
    Signed-off-by: Aaron Durbin <adurbin at chromium.org>
---
 src/cpu/Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cpu/Makefile.inc b/src/cpu/Makefile.inc
index d757c79..c203c72 100644
--- a/src/cpu/Makefile.inc
+++ b/src/cpu/Makefile.inc
@@ -12,8 +12,8 @@ subdirs-y += via
 subdirs-y += x86
 subdirs-$(CONFIG_CPU_QEMU_X86) += qemu-x86
 
+$(call add-class,cpu_microcode)
 $(eval $(call create_class_compiler,cpu_microcode,x86_32))
-$(eval $(call create_class_compiler,cpu_microcode,x86_64))
 ################################################################################
 ## Rules for building the microcode blob in CBFS
 ################################################################################



More information about the coreboot-gerrit mailing list