From patchwork Mon Jul 2 21:17:33 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10502415 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 8A38B60284 for ; Mon, 2 Jul 2018 21:17:36 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 772F628B89 for ; Mon, 2 Jul 2018 21:17:36 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6912328BDE; Mon, 2 Jul 2018 21:17:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id AAAC728B89 for ; Mon, 2 Jul 2018 21:17:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752808AbeGBVRf (ORCPT ); Mon, 2 Jul 2018 17:17:35 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:52560 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752715AbeGBVRe (ORCPT ); Mon, 2 Jul 2018 17:17:34 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:References:Cc:To: Subject:Sender:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=auro2qPQhr9wCLR4shgWTH+LAyRTO3EqUUkAe+G2Y+k=; b=TtTxd3IioAZwHfJxtRqqUY+Kv XwFYd6H/iU4EYMTx4uU/Copud2Lu+N4qJHrn6TDL0Nu427BcKKx6c9CiEZSSUaYacvTSzpbSJvtFd nyyR5sed/f+gOaPIkoB1b8SAkvEhkABUuVGlbCjbUqaVzBaFnwAHcOtQJNQWZrN40WzPoJ7+FKGTt OlKOr6PXcmRC9NYyMbO2Mfx/zLOceKPRQiOeCS/o2q0yN4FB02puEClNwojbtTqVHOrtvN8d++LjJ rGoT9MJvmRRVJpjhUG+1SeXrR0wYKgoQaPQQJK4gMKARAiLCStdvcmvhHaDuJ+rPwbhtWy8Bo6S3G AA6rCjDoQ==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlab) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fa6CT-00074N-Qd; Mon, 02 Jul 2018 21:17:33 +0000 Subject: [PATCH] arch/Kconfig: use a menu to reduce clutter To: Christoph Hellwig , Masahiro Yamada Cc: linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org References: <20180702144711.22111-1-hch@lst.de> From: Randy Dunlap Message-ID: <6ba546f8-42bd-4400-131f-bb389812cb56@infradead.org> Date: Mon, 2 Jul 2018 14:17:33 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <20180702144711.22111-1-hch@lst.de> Content-Language: en-US Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Put everything in arch/Kconfig into a General options menu so that they don't clutter up the main/major/primary list of menu options. Signed-off-by: Randy Dunlap --- arch/Kconfig | 4 ++++ 1 file changed, 4 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 --- linux-next-20180702.orig/arch/Kconfig +++ linux-next-20180702/arch/Kconfig @@ -3,6 +3,8 @@ # General architecture dependent options # +menu "General architecture-dependent options" + config CRASH_CORE bool @@ -1028,3 +1030,5 @@ config REFCOUNT_FULL security flaw exploits. source "kernel/gcov/Kconfig" + +endmenu