Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14355
-gerrit
commit 70d4dd247f91b1a01466d931ecd1b7eb89e67c89 Author: Stefan Reinauer stefan.reinauer@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@coreboot.org --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile index 35d2b6e..4d4472e 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