diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2018-07-31 07:39:33 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-01 19:06:54 -0400 |
commit | 22471e1313f2b5ec698069206f3a310d6d35b1d4 (patch) | |
tree | 47bd642e7c66c8d544e9defc86a626b71b66683a | |
parent | 87a4c375995ed8eaa721b08825cf73d0b02b3145 (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/Kconfig | 4 |
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 | # |
10 | source "arch/$(SRCARCH)/Kconfig" | 10 | source "arch/$(SRCARCH)/Kconfig" |
11 | 11 | ||
12 | menu "General architecture-dependent options" | ||
13 | |||
12 | config CRASH_CORE | 14 | config 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 | ||
983 | source "kernel/gcov/Kconfig" | 985 | source "kernel/gcov/Kconfig" |
986 | |||
987 | endmenu | ||