From patchwork Wed Oct 10 22:50:50 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg Kroah-Hartman X-Patchwork-Id: 1577271 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 2923940135 for ; Wed, 10 Oct 2012 23:25:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757568Ab2JJWx6 (ORCPT ); Wed, 10 Oct 2012 18:53:58 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:38192 "EHLO out1-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757532Ab2JJWxz (ORCPT ); Wed, 10 Oct 2012 18:53:55 -0400 Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id C489D20E5B; Wed, 10 Oct 2012 18:53:54 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute2.internal (MEProxy); Wed, 10 Oct 2012 18:53:54 -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=ac/h6+1H/twdfEvl0iTyJxJev OA=; b=ADawEivsosesAX2H6nm+aVzUMLCVNl3Epr0NyjDBqKHp8Cblb6/29Nz3r eesng08lUkw3A+K9Xojw8VtgJdJpzVI+Ix877MuCyZgJf+41FhAbNcJ8Kke1tK1s 6zOfkzCwPLmonGja/ycR9fD1nI6LmmNYemZX+g+KEkEvCJ+t+E= X-Sasl-enc: atEpXhogSdhX58aVZYxPF6/mRJjgWd1a/hYd63HK8zHY 1349909634 Received: from localhost (unknown [222.106.197.2]) by mail.messagingengine.com (Postfix) with ESMTPA id 2CD4248252D; Wed, 10 Oct 2012 18:53:53 -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: [ 024/133] localmodconfig: Fix localyesconfig to set to y not m Date: Thu, 11 Oct 2012 07:50:50 +0900 Message-Id: <20121010224858.802232588@linuxfoundation.org> X-Mailer: git-send-email 1.8.0.rc0.18.gf84667d In-Reply-To: <20121010224854.313159132@linuxfoundation.org> References: <20121010224854.313159132@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.5-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; }