aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@infradead.org>2018-07-31 07:39:33 -0400
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-08-01 19:06:54 -0400
commit22471e1313f2b5ec698069206f3a310d6d35b1d4 (patch)
tree47bd642e7c66c8d544e9defc86a626b71b66683a
parent87a4c375995ed8eaa721b08825cf73d0b02b3145 (diff)
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 <rdunlap@infradead.org> Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r--arch/Kconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig
index cddd0faae4cb..6cf1b17a8df2 100644
--- a/arch/Kconfig
+++ b/arch/Kconfig
@@ -9,6 +9,8 @@
9# 9#
10source "arch/$(SRCARCH)/Kconfig" 10source "arch/$(SRCARCH)/Kconfig"
11 11
12menu "General architecture-dependent options"
13
12config CRASH_CORE 14config CRASH_CORE
13 bool 15 bool
14 16
@@ -981,3 +983,5 @@ config REFCOUNT_FULL
981 security flaw exploits. 983 security flaw exploits.
982 984
983source "kernel/gcov/Kconfig" 985source "kernel/gcov/Kconfig"
986
987endmenu