Nico Huber (nico.h@gmx.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7061
-gerrit
commit c2d3ee2593a3129ef774c850041d1c52120403d9 Author: Nico Huber nico.h@gmx.de Date: Tue Oct 14 23:27:50 2014 +0200
libpayload: Don't use default path for kconfig
libpayload's kconfig is totally incompatible with other kconfig versions, today. Using other versions just doesn't work any more, so don't use the overridable $(obj)/util/kconfig path. Choose a path that reflects the incompatibility: $(obj)/util/lp_kconfig, instead.
This whole every-(sub)project-has-it's-own-patched-kconfig-version makes me really, really sad :'-(
Change-Id: I964772f3323dc20aa7c1cc26a384a2fbca1dbb5e Signed-off-by: Nico Huber nico.h@gmx.de --- payloads/libpayload/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/payloads/libpayload/Makefile b/payloads/libpayload/Makefile index d84b63b..0b2f109 100644 --- a/payloads/libpayload/Makefile +++ b/payloads/libpayload/Makefile @@ -48,7 +48,7 @@ export src := src export srck := $(top)/util/kconfig export obj ?= build export objutil ?= $(obj)/util -export objk := $(objutil)/kconfig +export objk := $(objutil)/lp_kconfig
export KCONFIG_AUTOHEADER := $(obj)/config.h @@ -272,7 +272,7 @@ printall:
endif
-$(shell mkdir -p $(obj) $(objutil)/kconfig/lxdialog $(additional-dirs) $(alldirs)) +$(shell mkdir -p $(obj) $(objk)/lxdialog $(additional-dirs) $(alldirs))
cscope: cscope -bR