[coreboot-gerrit] Patch set updated for coreboot: kconfig: Fix defconfig targets

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Tue Jun 30 01:56:15 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/10716

-gerrit

commit 6d6168b90953761a35157f87cf36ac0befb011bd
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Mon Jun 29 16:45:57 2015 -0700

    kconfig: Fix defconfig targets
    
    The syntax of "conf" has changed, but we never adapted
    our Kconfig Makefile since we are not typically using those
    targets (except for coreinfo)
    
    Change-Id: Ib95b53d255d7456cc6d6bcc7048fcaa0db1ce142
    Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
---
 util/kconfig/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/util/kconfig/Makefile b/util/kconfig/Makefile
index eb9e38c..ab74113 100644
--- a/util/kconfig/Makefile
+++ b/util/kconfig/Makefile
@@ -91,14 +91,14 @@ savedefconfig: $(objk)/conf
 
 defconfig: $(objk)/conf
 ifeq ($(KBUILD_DEFCONFIG),)
-	$< -d $(Kconfig)
+	$< --defconfig $(Kconfig)
 else
 	@echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
-	$< -D $(KBUILD_DEFCONFIG) $(Kconfig)
+	$< --defconfig=$(KBUILD_DEFCONFIG) $(Kconfig)
 endif
 
 %_defconfig: $(objk)/conf
-	$< -D configs/$@ $(Kconfig)
+	$< --defconfig=configs/$@ $(Kconfig)
 
 # Help text used by make help
 help:



More information about the coreboot-gerrit mailing list