[coreboot-gerrit] New patch to review for filo: filo: Fix compilation with latest libpayload changes

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Wed Jul 1 02:07:39 CEST 2015


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10745

-gerrit

commit 29a639fa607966d9398f9b0ce64c0085c5a50273
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Tue Jun 30 17:03:19 2015 -0700

    filo: Fix compilation with latest libpayload changes
    
    The use of IS_ENABLED() requires that kconfig.h from libpayload
    is included by all files.
    
    Change-Id: I53b9ec8cac9c0a409b1e7290e9b81e06f2ce29e5
    Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index a860236..5afa63e 100644
--- a/Makefile
+++ b/Makefile
@@ -93,7 +93,7 @@ ARCHDIR-$(CONFIG_TARGET_I386) := x86
 CPPFLAGS := -nostdinc -imacros $(obj)/config.h
 CPPFLAGS += -I$(INCPAYLOAD) -I$(INCPAYLOAD)/$(ARCHDIR-y)
 CPPFLAGS += -I$(ARCHDIR-y)/include -Iinclude -I$(obj)
-CPPFLAGS += -I$(GCCINCDIR)
+CPPFLAGS += -I$(GCCINCDIR) --include $(INCPAYLOAD)/kconfig.h
 
 CFLAGS := -Wall -Wshadow -Os -pipe
 CFLAGS += -fomit-frame-pointer -fno-common -ffreestanding -fno-strict-aliasing



More information about the coreboot-gerrit mailing list