Alexandru Gagniuc (mr.nuke.me@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11795
-gerrit
commit 7b983bcc119081fc270c212235da4cfb6ac1e752 Author: Alexandru Gagniuc mr.nuke.me@gmail.com Date: Sun Oct 4 19:34:08 2015 -0700
cpu/Makefile.inc: Only inculde x86 subdir if ARCH_x86 is selected
There is no other guard to prevent this from being picked up when building for other architectures.
Change-Id: I2039a289a4dd9970d5dd0f90d43d5d5c2a6d0a0b Signed-off-by: Alexandru Gagniuc mr.nuke.me@gmail.com --- 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 92024f3..9220a8a 100644 --- a/src/cpu/Makefile.inc +++ b/src/cpu/Makefile.inc @@ -9,7 +9,7 @@ subdirs-y += imgtec subdirs-y += intel subdirs-y += ti subdirs-y += via -subdirs-y += x86 +subdirs-$(CONFIG_ARCH_X86) += x86 subdirs-$(CONFIG_CPU_QEMU_X86) += qemu-x86
$(eval $(call create_class_compiler,cpu_microcode,x86_32))