From patchwork Wed Oct 10 22:53:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg KH X-Patchwork-Id: 1577031 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id BC84C40135 for ; Wed, 10 Oct 2012 23:15:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757871Ab2JJXPV (ORCPT ); Wed, 10 Oct 2012 19:15:21 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:52801 "EHLO out1-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758037Ab2JJXBs (ORCPT ); Wed, 10 Oct 2012 19:01:48 -0400 Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 7CA1E20FA5; Wed, 10 Oct 2012 19:01:48 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute2.internal (MEProxy); Wed, 10 Oct 2012 19:01:48 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:cc:subject:date:message-id :in-reply-to:references; s=smtpout; bh=nxqV2Lwuu8WxED1EBCMj0UBSY HI=; b=Ki6R0JBS5l47KmpHg+4dqJ+QK0QOlXmm9lKlVYSxV5wL5wK7jRPTNy1Ae gfKoTfOj9/rEaSAZLJjz1L+8a8AKtaDlFku6xgQOWqoDSj33WSB/In/SkzGkUamB hGh1ay1h7TVAX+WrbQpXcUdWn8P21t18ymOieHtkwo0cKRPl3c= X-Sasl-enc: DBdKwAGulnVza9/fggypCaa28urMiRnuFduO23wKQrjq 1349910107 Received: from localhost (unknown [222.106.197.2]) by mail.messagingengine.com (Postfix) with ESMTPA id D6F584827BC; Wed, 10 Oct 2012 19:01:47 -0400 (EDT) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Greg Kroah-Hartman , alan@lxorguk.ukuu.org.uk, Yuta Ando , Steven Rostedt , linux-kbuild@vger.kernel.org Subject: [ 031/122] localmodconfig: Fix localyesconfig to set to y not m Date: Thu, 11 Oct 2012 07:53:17 +0900 Message-Id: <20121010225343.735598738@linuxfoundation.org> X-Mailer: git-send-email 1.8.0.rc0.18.gf84667d In-Reply-To: <20121010225337.989799482@linuxfoundation.org> References: <20121010225337.989799482@linuxfoundation.org> User-Agent: quilt/0.60-2.1.2 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org 3.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Yuta Ando commit 4eae518d4b01b0cbf2f0d8edb5a6f3d6245ee8fb upstream. The kbuild target 'localyesconfig' has been same as 'localmodconfig' since the commit 50bce3e "kconfig/streamline_config.pl: merge local{mod,yes}config". The commit expects this script generates different configure depending on target, but it was not yet implemented. So I added code that sets to 'yes' when target is 'localyesconfig'. Link: http://lkml.kernel.org/r/1349101470-12243-1-git-send-email-yuta.and@gmail.com Signed-off-by: Yuta Ando Cc: linux-kbuild@vger.kernel.org Signed-off-by: Steven Rostedt Signed-off-by: Greg Kroah-Hartman --- scripts/kconfig/streamline_config.pl | 2 ++ 1 file changed, 2 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl @@ -605,6 +605,8 @@ foreach my $line (@config_file) { if (defined($configs{$1})) { if ($localyesconfig) { $setconfigs{$1} = 'y'; + print "$1=y\n"; + next; } else { $setconfigs{$1} = $2; }