From: Randy Dunlap Date: Tue, 31 Jul 2018 11:39:33 +0000 (+0200) Subject: kconfig: use a menu in arch/Kconfig to reduce clutter X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=22471e1313f2b5ec698069206f3a310d6d35b1d4;p=linux.git kconfig: use a menu in arch/Kconfig to reduce clutter 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 Signed-off-by: Masahiro Yamada --- diff --git a/arch/Kconfig b/arch/Kconfig index cddd0faae4cb7..6cf1b17a8df21 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