From patchwork Tue Jul 31 11:39:33 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 10550671 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id EFBC913B8 for ; Tue, 31 Jul 2018 11:40:09 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D910F2A5CF for ; Tue, 31 Jul 2018 11:40:09 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C85AE2A664; Tue, 31 Jul 2018 11:40:09 +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 749FC2A5CF for ; Tue, 31 Jul 2018 11:40:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732264AbeGaNUD (ORCPT ); Tue, 31 Jul 2018 09:20:03 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:43762 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731912AbeGaNUC (ORCPT ); Tue, 31 Jul 2018 09:20:02 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=References:In-Reply-To:Message-Id: Date:Subject:Cc:To:From:Sender:Reply-To:MIME-Version:Content-Type: Content-Transfer-Encoding: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=Nd/NAshcC+N9sJXOXpHOLtro9zm+WHYdhQEaujYnfgA=; b=TUotJjhuZGlFozPGd9JwXdarJ kf4h3pdoPMTwFzxBNHX3y+460JbtmbVzXr9YLCUEK4bTRQVANtcXMER+XmpKahutyB+KkZfaIJR3f W1F+Yz7616XHjTNI6eltql5z22TBlObMrmnLv2oZ9L+MNDENot3RMuTl3tWEa/5HCGzj+lGiGG0qy ZAMb+C0el3ZhBXQRYtlC3maxRYwOeDZg8hfYz7tVAquX//gtk14KT6i/Lk0Ahdi+fHDqhCZtwEoxg S5uLicjlLVMHdR1aZ99WrxrWLzTsifj6E/cD4kArxP7h+fTp826CX7GXVJ6xi7nfpV/uPuLT0ClLS UB8RLlcPw==; Received: from 089144201224.atnat0010.highway.a1.net ([89.144.201.224] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fkT0X-0001XP-DC; Tue, 31 Jul 2018 11:40:05 +0000 From: Christoph Hellwig To: Masahiro Yamada Cc: Randy Dunlap , Richard Weinberger , Ley Foon Tan , Michal Simek , linux-kbuild@vger.kernel.org, linux-um@lists.infradead.org, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 08/10] kconfig: use a menu in arch/Kconfig to reduce clutter Date: Tue, 31 Jul 2018 13:39:33 +0200 Message-Id: <20180731113935.6105-9-hch@lst.de> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180731113935.6105-1-hch@lst.de> References: <20180731113935.6105-1-hch@lst.de> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html 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 Signed-off-by: Christoph Hellwig --- arch/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/Kconfig b/arch/Kconfig index cddd0faae4cb..6cf1b17a8df2 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -9,6 +9,8 @@ # source "arch/$(SRCARCH)/Kconfig" +menu "General architecture-dependent options" + config CRASH_CORE bool @@ -981,3 +983,5 @@ config REFCOUNT_FULL security flaw exploits. source "kernel/gcov/Kconfig" + +endmenu