[coreboot-gerrit] New patch to review for coreboot: util/kconfig: add olddefconfig target

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Wed Aug 19 01:20:05 CEST 2015


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11273

-gerrit

commit f4bbfaae66d2267edf91cff03e61dbd57cd7f269
Author: Martin Roth <martinroth at google.com>
Date:   Tue Aug 18 14:30:27 2015 -0600

    util/kconfig: add olddefconfig target
    
    There doesn't seem to have been an olddefconfig target in the coreboot
    version of the Kconfig makefile.  It's listed in the .PHONY, but it
    doesn't seem like it's ever been there.  This is useful for expanding
    a miniconfig saved with 'make savedefconfig'.
    
    Change-Id: I3798f8469135b58d32da68d4b0e434ab5351b501
    Signed-off-by: Martin Roth <martinroth at google.com>
---
 util/kconfig/Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/util/kconfig/Makefile b/util/kconfig/Makefile
index ab74113..243f763 100644
--- a/util/kconfig/Makefile
+++ b/util/kconfig/Makefile
@@ -97,6 +97,9 @@ else
 	$< --defconfig=$(KBUILD_DEFCONFIG) $(Kconfig)
 endif
 
+olddefconfig: $(objk)/conf
+	$< --olddefconfig $(Kconfig)
+
 %_defconfig: $(objk)/conf
 	$< --defconfig=configs/$@ $(Kconfig)
 



More information about the coreboot-gerrit mailing list