From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753969AbbCYOf7 (ORCPT ); Wed, 25 Mar 2015 10:35:59 -0400 Received: from e24smtp05.br.ibm.com ([32.104.18.26]:42392 "EHLO e24smtp05.br.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752408AbbCYOfx (ORCPT ); Wed, 25 Mar 2015 10:35:53 -0400 From: Thadeu Lima de Souza Cascardo To: linux-kernel@vger.kernel.org Cc: Thadeu Lima de Souza Cascardo , Dave Hansen Subject: [PATCH 1/2] kconfig: move DEBUG_FS out of compilation options Date: Wed, 25 Mar 2015 11:22:12 -0300 Message-Id: <1427293333-17471-1-git-send-email-cascardo@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.10.4 X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15032514-0033-0000-0000-0000021915F1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since 6dfc06651b3d29aa07ed99b8075e5d324f7a953a ("consolidate compilation option configs"), DEBUG_FS has been hidden under the "Compile-time checks and compiler options". Move it out of that menu. Signed-off-by: Thadeu Lima de Souza Cascardo Cc: Dave Hansen --- lib/Kconfig.debug | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index c5cefb3..48edcbc 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -254,18 +254,6 @@ config PAGE_OWNER If unsure, say N. -config DEBUG_FS - bool "Debug Filesystem" - help - debugfs is a virtual file system that kernel developers use to put - debugging files into. Enable this option to be able to read and - write to these files. - - For detailed documentation on the debugfs API, see - Documentation/DocBook/filesystems. - - If unsure, say N. - config HEADERS_CHECK bool "Run 'make headers_check' when building vmlinux" depends on !UML @@ -349,6 +337,18 @@ config DEBUG_FORCE_WEAK_PER_CPU endmenu # "Compiler options" +config DEBUG_FS + bool "Debug Filesystem" + help + debugfs is a virtual file system that kernel developers use to put + debugging files into. Enable this option to be able to read and + write to these files. + + For detailed documentation on the debugfs API, see + Documentation/DocBook/filesystems. + + If unsure, say N. + config MAGIC_SYSRQ bool "Magic SysRq key" depends on !UML -- 1.7.10.4