From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752117AbcGRTcU (ORCPT ); Mon, 18 Jul 2016 15:32:20 -0400 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:49632 "EHLO relay2-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751568AbcGRTcR (ORCPT ); Mon, 18 Jul 2016 15:32:17 -0400 X-Originating-IP: 50.39.163.18 Date: Mon, 18 Jul 2016 12:32:07 -0700 From: Josh Triplett To: Linux Kbuild mailing list Cc: Arnd Bergmann , Michal Marek , "Yann E . MORIN" , Darren Hart , kernel-build-reports@lists.linaro.org, Thiago Macieira , Linux Kernel Mailing List , Masahiro Yamada Subject: [PATCH 1/1] kconfig: tinyconfig: x86: List disabled choices to avoid warning Message-ID: <20160718193206.GA20396@x> References: <20160718160035.3062818-1-arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160718160035.3062818-1-arnd@arndb.de> User-Agent: Mutt/1.6.0 (2016-04-01) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The Kconfig machinery used to power tinyconfig produces a warning like this when changing a "choice" option without explicitly disabling the other choices: .config:965:warning: override: NOHIGHMEM changes choice state Expand arch/x86/configs/tiny.config to add entries disabling the other two choices, to eliminate this warning. (Doing so then introduces a different form of warning for changing any option at all, but that needs fixing in the underlying config merge machinery.) Based on a similar change from Arnd Bergmann for the architecture-independent tiny.config. Signed-off-by: Josh Triplett Reported-by: Arnd Bergmann --- arch/x86/configs/tiny.config | 2 ++ 1 file changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/x86/configs/tiny.config b/arch/x86/configs/tiny.config index 4e2ecfa..4b429df 100644 --- a/arch/x86/configs/tiny.config +++ b/arch/x86/configs/tiny.config @@ -1 +1,3 @@ CONFIG_NOHIGHMEM=y +# CONFIG_HIGHMEM4G is not set +# CONFIG_HIGHMEM64G is not set -- git-series 0.8.3