[coreboot-gerrit] Patch set updated for filo: Point to the correct libpayload path

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Mon May 2 22:13:13 CEST 2016


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

-gerrit

commit c3d7e519ea853397c9caa65892f46bb64da57ca3
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Wed Apr 13 16:23:48 2016 -0700

    Point to the correct libpayload path
    
    libpayload is not standalone, so assume it lives under coreboot
    to make out of the box builds easier.
    
    Change-Id: Ib6240e7459a7e56f911c01e1ebe9f535cc0e50ad
    Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
---
 Makefile | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index aae5db0..051af05 100644
--- a/Makefile
+++ b/Makefile
@@ -26,10 +26,14 @@ export obj := $(src)/build
 export objk := $(src)/build/util/kconfig
 
 ifndef LIBCONFIG_PATH
-	LIBCONFIG_PATH := $(src)/../libpayload
+LIBCONFIG_PATH := $(src)/../coreboot/payloads/libpayload
 endif
 export LIBCONFIG_PATH
 
+ifeq ($(wildcard $(LIBCONFIG_PATH)/*),)
+$(error Could not find libpayload at $(LIBCONFIG_PATH))
+endif
+
 export KERNELVERSION      := $(PROGRAM_VERSION)
 export KCONFIG_AUTOHEADER := $(obj)/config.h
 export KCONFIG_AUTOCONFIG := $(obj)/auto.conf



More information about the coreboot-gerrit mailing list