aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/Kconfig.debug
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2008-12-17 01:33:43 -0500
committerPaul Mundt <lethal@linux-sh.org>2008-12-22 04:44:47 -0500
commit740a3e677b70181d5e2b1458a27891209e3bf635 (patch)
tree9b5de2213f9a6ca036398bbc411a9982444d4351 /arch/sh/Kconfig.debug
parent8a655053ca1593dd160dac2a4ee638fdec037d86 (diff)
sh: Enable skipping of bss on debug platforms for sh32 also.
This enables the same functionality that sh64 has for sh32. When running on simulated hardware or via remote memory via the debug interface, memory is gauranteed to be zero on boot already, and skipping the zeroing of BSS has measurable boot time benefits. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/Kconfig.debug')
-rw-r--r--arch/sh/Kconfig.debug15
1 files changed, 12 insertions, 3 deletions
diff --git a/arch/sh/Kconfig.debug b/arch/sh/Kconfig.debug
index 834a2d24342b..eef2fa940ce0 100644
--- a/arch/sh/Kconfig.debug
+++ b/arch/sh/Kconfig.debug
@@ -98,6 +98,18 @@ config IRQSTACKS
98 for handling hard and soft interrupts. This can help avoid 98 for handling hard and soft interrupts. This can help avoid
99 overflowing the process kernel stacks. 99 overflowing the process kernel stacks.
100 100
101config SH_NO_BSS_INIT
102 bool "Avoid zeroing BSS (to speed-up startup on suitable platforms)"
103 depends on DEBUG_KERNEL
104 default n
105 help
106 If running in painfully slow environments, such as an RTL
107 simulation or from remote memory via SHdebug, where the memory
108 can already be gauranteed to ber zeroed on boot, say Y.
109
110 For all other cases, say N. If this option seems perplexing, or
111 you aren't sure, say N.
112
101config MORE_COMPILE_OPTIONS 113config MORE_COMPILE_OPTIONS
102 bool "Add any additional compile options" 114 bool "Add any additional compile options"
103 help 115 help
@@ -125,9 +137,6 @@ config SH_ALPHANUMERIC
125 bool "Enable debug outputs to on-board alphanumeric display" 137 bool "Enable debug outputs to on-board alphanumeric display"
126 depends on SH_CAYMAN 138 depends on SH_CAYMAN
127 139
128config SH_NO_BSS_INIT
129 bool "Avoid zeroing BSS (to speed-up startup on suitable platforms)"
130
131endif 140endif
132 141
133endmenu 142endmenu