From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755931Ab1HKNUz (ORCPT ); Thu, 11 Aug 2011 09:20:55 -0400 Received: from casper.infradead.org ([85.118.1.10]:48954 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755578Ab1HKNUw (ORCPT ); Thu, 11 Aug 2011 09:20:52 -0400 Subject: Re: [PATCH 2/2] Enable 'make CONFIG_FOO=y oldconfig' From: David Woodhouse To: Michal Marek Cc: Andreas Schwab , Arnaud Lacombe , "H. Peter Anvin" , linux-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org Date: Thu, 11 Aug 2011 14:20:41 +0100 In-Reply-To: <4E43C363.3000103@suse.cz> References: <1312067499.22074.59.camel@i7.infradead.org> <4E4280BA.9050109@suse.cz> <1312981658.2989.39.camel@i7.infradead.org> <1312985888.2989.46.camel@i7.infradead.org> <1312993987.2989.53.camel@i7.infradead.org> <1312999168.2989.61.camel@i7.infradead.org> <1313002322.2989.88.camel@i7.infradead.org> <1313018232.2989.114.camel@i7.infradead.org> <1313052168.18037.9.camel@i7.infradead.org> <4E4399B3.3020909@suse.cz> <1313061012.18037.17.camel@i7.infradead.org> <1313062813.18037.24.camel@i7.infradead.org> <4E43C363.3000103@suse.cz> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.0.2 (3.0.2-3.fc15) Content-Transfer-Encoding: 7bit Message-ID: <1313068845.18037.29.camel@i7.infradead.org> Mime-Version: 1.0 X-SRS-Rewrite: SMTP reverse-path rewritten from by casper.infradead.org See http://www.infradead.org/rpr.html Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 2011-08-11 at 13:56 +0200, Michal Marek wrote: > > If you do > $ echo 'CONFIG_FOO=y' >all.config > $ make allnoconfig bzImage > then it will also build bzImage even if kconfig wasn't able to set > CONFIG_FOO=y. IMO printing a warning that CONFIG_FOO could not be set is > sufficient, as long as CONFIG_FOO is consistently unset. The thing is, such a warning is likely to be lost in the scrollback. There's definitely something to be said for: [dwmw2@i7 linux-2.6]$ make CONFIG_SATA_MV=y bzImage Makefile:572: *** CONFIG_SATA_MV could not be set to "y" as requested. Stop. -- dwmw2