From patchwork Thu Jul 29 09:39:46 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sam Ravnborg X-Patchwork-Id: 115024 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o6T9USmH000514 for ; Thu, 29 Jul 2010 09:42:31 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755884Ab0G2Jjt (ORCPT ); Thu, 29 Jul 2010 05:39:49 -0400 Received: from pfepb.post.tele.dk ([195.41.46.236]:58791 "EHLO pfepb.post.tele.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752958Ab0G2Jjs (ORCPT ); Thu, 29 Jul 2010 05:39:48 -0400 Received: from merkur.ravnborg.org (x1-6-00-1e-2a-84-ae-3e.k225.webspeed.dk [80.163.61.94]) by pfepb.post.tele.dk (Postfix) with ESMTP id CB2BEF84031; Thu, 29 Jul 2010 11:39:46 +0200 (CEST) Date: Thu, 29 Jul 2010 11:39:46 +0200 From: Sam Ravnborg To: Michal Marek Cc: lkml , linux-kbuild , Stephen Rothwell , Roman Zippel , Uwe Kleine-Koig , Linus Torvalds Subject: Re: [RFC PATCH] kconfig: use long options in conf Message-ID: <20100729093946.GA6725@merkur.ravnborg.org> References: <20100725213808.GA5814@merkur.ravnborg.org> <20100725214021.GD5834@merkur.ravnborg.org> <4C4EFE80.7050808@suse.cz> <20100728203622.GA32086@merkur.ravnborg.org> <4C51473A.4000605@suse.cz> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <4C51473A.4000605@suse.cz> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 29 Jul 2010 09:42:39 +0000 (UTC) diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 1290ac3..9670323 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -101,12 +101,12 @@ update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h $(Q)rm -f arch/um/Kconfig.arch $(Q)rm -f $(obj)/config.pot -PHONY += randconfig allyesconfig allnoconfig allmodconfig defconfig +PHONY += allnoconfig allyesconfig allmodconfig allrandconfig randconfig defconfig -randconfig: $(obj)/conf - $< --allrandconfig $(Kconfig) +# Support deprecated randconfig target +randconfig: allrandconfig -allnoconfig allyesconfig allmodconfig: $(obj)/conf +allnoconfig allyesconfig allmodconfig allrandconfig: $(obj)/conf $< --$@ $(Kconfig) defconfig: $(obj)/conf @@ -131,7 +131,7 @@ help: @echo ' localmodconfig - Update current config disabling modules not loaded' @echo ' localyesconfig - Update current config converting local mods to core' @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps' - @echo ' randconfig - New config with random answer to all options' + @echo ' allrandconfig - New config with random answer to all options' @echo ' defconfig - New config with default answer to all options' @echo ' allmodconfig - New config selecting modules when possible' @echo ' allyesconfig - New config where all options are accepted with yes'