From patchwork Tue Jul 24 17:56:44 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 948700 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.infradead.org (client-ip=2607:7c80:54:e::133; helo=bombadil.infradead.org; envelope-from=linux-um-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=lst.de Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="KCNoSoTQ"; dkim-atps=neutral Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41ZmKD5MfJz9s1x for ; Wed, 25 Jul 2018 03:57:20 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:MIME-Version:Cc:List-Subscribe: List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id:References: In-Reply-To:Message-Id:Date:Subject:To:From:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Owner; bh=y2ohoyJb4XUNK33By3r8Zr1dMPBXpe2EPX7YSJ3Oh2s=; b=KCNoSoTQYph48tkIJZt7AqRIH1 x4zJKr9kkbreYPolDErd08+ZKaLHcd8vmz1eXahszQBeTTEVWigGD9DmRb+7muFQiNM0CRtWLrE+1 v3P9SPc5IQlXUFDnA2G5knN4AF21vMSlPYKbfEXF00F6BdIvPe9ip2oCTdNfrNGduhB5N1hmi17YK cdotJFBD54fBrIZXRpF2qSmVrQhvW3JMBrNttMCjNfTt+IGPWTCEwFBAqMMMQ1VzHdPfTFFNWAshQ LraCOeuXXYPyFY1srccc4B1eqpENijrJTXMBpXuM/d3Tv/uoUUNd7adlDMCuCvx2+G7IGrClA8emC Ku5S/TSA==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1fi1Yi-0007FQ-B7; Tue, 24 Jul 2018 17:57:16 +0000 Received: from 089144194224.atnat0003.highway.a1.net ([89.144.194.224] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fi1Yg-0007Dz-O2; Tue, 24 Jul 2018 17:57:15 +0000 From: Christoph Hellwig To: Masahiro Yamada Subject: [PATCH 08/10] kconfig: use a menu in arch/Kconfig to reduce clutter Date: Tue, 24 Jul 2018 19:56:44 +0200 Message-Id: <20180724175646.3621-9-hch@lst.de> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180724175646.3621-1-hch@lst.de> References: <20180724175646.3621-1-hch@lst.de> X-BeenThere: linux-um@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michal Simek , linux-kbuild@vger.kernel.org, Richard Weinberger , Randy Dunlap , linux-um@lists.infradead.org, linux-kernel@vger.kernel.org, linux-arch@lists.infradead.org, Ley Foon Tan MIME-Version: 1.0 Sender: "linux-um" Errors-To: linux-um-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org 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