diff options
author | Jan Beulich <JBeulich@suse.com> | 2015-02-05 10:39:34 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-02-18 16:08:46 -0500 |
commit | e0fd24a3b4ad7b4084b41944835952eedec53f98 (patch) | |
tree | 917431198356ab231556873ff750a6f5757783da | |
parent | e07e0d4cb0c4bfe822ec8491cc06269096a38bea (diff) |
x86/Kconfig: Avoid issuing pointless turned off entries to .config
Settings without prompts shouldn't normally have defaults other
than Y, as otherwise they (a) needlessly enlarge the resulting
.config and (b) if they ever get a prompt added later, the
tracked setting of off will prevent the devloper from then being
prompted for his/her choice when doing an incremental update of
the configuration (make oldconfig).
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Link: http://lkml.kernel.org/r/54D39CC6020000780005D6AE@mail.emea.novell.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/Kconfig | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 5e28e2be3a41..463d8838f1db 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -233,12 +233,10 @@ config ARCH_WANT_GENERAL_HUGETLB | |||
233 | def_bool y | 233 | def_bool y |
234 | 234 | ||
235 | config ZONE_DMA32 | 235 | config ZONE_DMA32 |
236 | bool | 236 | def_bool y if X86_64 |
237 | default X86_64 | ||
238 | 237 | ||
239 | config AUDIT_ARCH | 238 | config AUDIT_ARCH |
240 | bool | 239 | def_bool y if X86_64 |
241 | default X86_64 | ||
242 | 240 | ||
243 | config ARCH_SUPPORTS_OPTIMIZED_INLINING | 241 | config ARCH_SUPPORTS_OPTIMIZED_INLINING |
244 | def_bool y | 242 | def_bool y |
@@ -1115,10 +1113,10 @@ config MICROCODE_OLD_INTERFACE | |||
1115 | depends on MICROCODE | 1113 | depends on MICROCODE |
1116 | 1114 | ||
1117 | config MICROCODE_INTEL_EARLY | 1115 | config MICROCODE_INTEL_EARLY |
1118 | def_bool n | 1116 | bool |
1119 | 1117 | ||
1120 | config MICROCODE_AMD_EARLY | 1118 | config MICROCODE_AMD_EARLY |
1121 | def_bool n | 1119 | bool |
1122 | 1120 | ||
1123 | config MICROCODE_EARLY | 1121 | config MICROCODE_EARLY |
1124 | bool "Early load microcode" | 1122 | bool "Early load microcode" |