From patchwork Mon Jul 2 14:47:11 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 10501635 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 6DBBD60362 for ; Mon, 2 Jul 2018 14:47:23 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5D58B28A26 for ; Mon, 2 Jul 2018 14:47:23 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5157A28AB9; Mon, 2 Jul 2018 14:47:23 +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 01B2328A26 for ; Mon, 2 Jul 2018 14:47:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752432AbeGBOrV (ORCPT ); Mon, 2 Jul 2018 10:47:21 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:50412 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752399AbeGBOrR (ORCPT ); Mon, 2 Jul 2018 10:47:17 -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=JKBw+wkudZtayhhxpwzNWxpyySA1n0/Me0s2pU97Tlo=; b=dlZk4U8FfrTULxSePyNfbX/9k 0OlT/uwBJ9OBJdMgrI2g+RBzxaZ+dMTEty97pkLR3IbzTupDnDYq1yUytrr0bxlcccEXCkXg7f4Mb Dqujr+7rMvfGcvSQw9xMex/dBRNyGstGs4JCJj0OXfYaoNAyzy00jw+Ky46yj+8CymxHrY+oyTdpB A0wG479vsw04Rkuk6q/j95d9Z1mCaPOoNifBR9dB1Cy7S/3omB+6e6KOitmFUHfmLwqqrCy/WVGJz s5xVeC86wkIg9ct9dM2CW+H4EfXXKMPlSCIRSv2StYxlWxLQECiyDL1L8fKQ7CDloNgMUMYR87B1I 1rBmA5ZYg==; Received: from [208.118.102.130] (helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fa06n-0000ZH-4Z; Mon, 02 Jul 2018 14:47:17 +0000 From: Christoph Hellwig To: Masahiro Yamada Cc: Randy Dunlap , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 5/5] kconfig: move the "Executable file formats" menu to fs/Kconfig.binfmt Date: Mon, 2 Jul 2018 08:47:11 -0600 Message-Id: <20180702144711.22111-6-hch@lst.de> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180702144711.22111-1-hch@lst.de> References: <20180702144711.22111-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 No need to have this in the top-level Kconfig. Signed-off-by: Christoph Hellwig Tested-by: Randy Dunlap Acked-by: Randy Dunlap --- Kconfig | 2 -- fs/Kconfig.binfmt | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Kconfig b/Kconfig index 5f580c81d85d..f9969589a6b4 100644 --- a/Kconfig +++ b/Kconfig @@ -15,9 +15,7 @@ source "init/Kconfig" source "kernel/Kconfig.freezer" -menu "Executable file formats" source "fs/Kconfig.binfmt" -endmenu source "mm/Kconfig" diff --git a/fs/Kconfig.binfmt b/fs/Kconfig.binfmt index 56df483de619..b795f8da81f3 100644 --- a/fs/Kconfig.binfmt +++ b/fs/Kconfig.binfmt @@ -1,3 +1,6 @@ + +menu "Executable file formats" + config BINFMT_ELF bool "Kernel support for ELF binaries" depends on MMU @@ -187,3 +190,5 @@ config COREDUMP This option enables support for performing core dumps. You almost certainly want to say Y here. Not necessary on systems that never need debugging or only ever run flawless code. + +endmenu