Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10747
-gerrit
commit 0324003adde76176a4201da1f8b9e2df168306f4 Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Tue Jun 30 17:38:36 2015 -0700
Fix Makefiles for mixed use Kconfig usage
Change-Id: Ibcf7051a6e0e4b17536a4f18bd3a632c7463aae1 Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+)
diff --git a/Makefile b/Makefile index 5afa63e..a814983 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,11 @@ export LIBCONFIG_PATH export KERNELVERSION := $(PROGRAM_VERSION) export KCONFIG_AUTOHEADER := $(obj)/config.h export KCONFIG_AUTOCONFIG := $(obj)/auto.conf +export KCONFIG_DEPENDENCIES := $(obj)/auto.conf.cmd +export KCONFIG_SPLITCONFIG := $(obj)/config +export KCONFIG_TRISTATE := $(obj)/tristate.conf +export KCONFIG_NEGATIVES := 1 +export KCONFIG_CONFIG := .config
CONFIG_SHELL := sh KBUILD_DEFCONFIG := configs/defconfig @@ -171,6 +176,10 @@ $(obj)/version.h: Makefile $(obj)/%/: mkdir -p $@
+ifndef NOMKDIR +$(shell mkdir -p $(KCONFIG_SPLITCONFIG) $(objk)/lxdialog) +endif + prepare: $(sort $(dir $(OBJS))) $(obj)/util/kconfig/lxdialog/
clean: