aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/Kconfig
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2012-10-15 13:39:00 -0700
committerRonald G. Minnich <rminnich@gmail.com>2012-11-12 17:10:39 +0100
commit9c03957b363f9206b1eacecf9911cc28ae492306 (patch)
tree50d5f91b57df678904d420d4bdd15dfb6c6138f8 /src/arch/x86/Kconfig
parent2a6f390d11daa41e7a85aa1bdbf837fe22854bfc (diff)
Reduce default stack size to 4K
coreboot uses about 2K of stack on the BSP, and about 1K of stack on the APs. No reason to use an overdimensonal stack of 32k per core/thread. Change-Id: I734c240b992d40e1e35db3df5437c36da0a755cf Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1780 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/arch/x86/Kconfig')
-rw-r--r--src/arch/x86/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig
index 0233f1eb3c..ec52d0e9ca 100644
--- a/src/arch/x86/Kconfig
+++ b/src/arch/x86/Kconfig
@@ -25,7 +25,7 @@ config RAMTOP
config STACK_SIZE
hex
- default 0x8000
+ default 0x1000
# Maximum reboot count
# TODO: Improve description.