[coreboot-gerrit] New patch to review for coreboot: 4b0757e console/Makefile.inc: post.c is x86 specific code without cond

Edward O'Callaghan (eocallaghan@alterapraxis.com) gerrit at coreboot.org
Tue Jun 24 09:14:17 CEST 2014


Edward O'Callaghan (eocallaghan at alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6102

-gerrit

commit 4b0757ec2e2fa4d8cd1404ce24436635171ae9b1
Author: Edward O'Callaghan <eocallaghan at alterapraxis.com>
Date:   Tue Jun 24 17:12:27 2014 +1000

    console/Makefile.inc: post.c is x86 specific code without cond
    
    Be sure not to build X86 specific code on other ISA's.
    
    Change-Id: I8f922b436e2011c7cd94eb98db8ef1c525b3ca8d
    Signed-off-by: Edward O'Callaghan <eocallaghan at alterapraxis.com>
---
 src/console/Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/console/Makefile.inc b/src/console/Makefile.inc
index 435d704..44b4857 100644
--- a/src/console/Makefile.inc
+++ b/src/console/Makefile.inc
@@ -1,6 +1,6 @@
 ramstage-y += vtxprintf.c printk.c vsprintf.c
 ramstage-y += init.c console.c
-ramstage-y += post.c
+ramstage-$(CONFIG_ARCH_X86) += post.c
 ramstage-y += die.c
 
 smm-$(CONFIG_DEBUG_SMI) += init.c console.c vtxprintf.c printk.c



More information about the coreboot-gerrit mailing list