From 4b8b2a0f0b1b7901099c04b810b1b8f93e6000e9 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 30 Jul 2021 09:07:50 -0400 Subject: [PATCH] util/kconfig: Provide default for DEFCONFIG Our documentation claims that the DEFCONFIG make variable, used for targets such as savedefconfig, defaults to 'defconfig'. With the update to kconfig 5.13 we lost this default, so bring it back. Fixes: 53ea1d44f0 ("util/kconfig: Uprev to Linux 5.13's kconfig") Resolves: https://ticket.coreboot.org/issues/317 Change-Id: Idb88b69ffa855fa97df8c821601308e717575550 Signed-off-by: Patrick Georgi Reviewed-on: https://review.coreboot.org/c/coreboot/+/56718 Reviewed-by: Paul Menzel Reviewed-by: Martin Roth Tested-by: build bot (Jenkins) --- util/kconfig/Makefile.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/kconfig/Makefile.inc b/util/kconfig/Makefile.inc index bedb41d095..c3b764b2b7 100644 --- a/util/kconfig/Makefile.inc +++ b/util/kconfig/Makefile.inc @@ -6,6 +6,8 @@ KBUILD_KCONFIG ?= src/Kconfig export LC_ALL=C export LANG=C +DEFCONFIG ?= defconfig + # Include original Makefile, with just enough edits to work for us $(objk)/Makefile.real: $(dir $(lastword $(MAKEFILE_LIST)))Makefile mkdir -p $(objk)