From patchwork Thu Oct 11 00:59:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg KH X-Patchwork-Id: 1579841 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 DE5DA3FE36 for ; Thu, 11 Oct 2012 01:36:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933243Ab2JKBgS (ORCPT ); Wed, 10 Oct 2012 21:36:18 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:51445 "EHLO out1-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933796Ab2JKBSo (ORCPT ); Wed, 10 Oct 2012 21:18:44 -0400 Received: from compute6.internal (compute6.nyi.mail.srv.osa [10.202.2.46]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 9C50F20CEA; Wed, 10 Oct 2012 21:18:43 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute6.internal (MEProxy); Wed, 10 Oct 2012 21:18:43 -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=++Fn71bQ9cLhcmZ6apL2ly9W1 XY=; b=ValbDuNE6D3+Ak3VWWKBJ6q5bo7y39adAPW19Q6LaVaHzq3eDSBV15coI fyOaT75e8/Qd45QPED9/VDgq4y46VxuV5DKQ08SSqqee0/4Vp/FneK+ofcLwN1DZ I9I748dtKNT5yqLDqOMhBzsWLx6ro3g2SJakKYtIabWqkPza58= X-Sasl-enc: Ba99vBqH/n+iOJHnaQj2yAo8pTw7OcbrCoXc1L0032qa 1349918322 Received: from localhost (unknown [222.106.197.10]) by mail.messagingengine.com (Postfix) with ESMTPA id E0F454827E8; Wed, 10 Oct 2012 21:18:42 -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: [ 021/120] localmodconfig: Fix localyesconfig to set to y not m Date: Thu, 11 Oct 2012 09:59:33 +0900 Message-Id: <20121011005829.229284141@linuxfoundation.org> X-Mailer: git-send-email 1.8.0.rc0.18.gf84667d In-Reply-To: <20121011005825.364610894@linuxfoundation.org> References: <20121011005825.364610894@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.4-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 @@ -463,6 +463,8 @@ while() { if (defined($configs{$1})) { if ($localyesconfig) { $setconfigs{$1} = 'y'; + print "$1=y\n"; + next; } else { $setconfigs{$1} = $2; }