From e31f031549e58c58eaf06c8d06112d7b9a6bbeb5 Mon Sep 17 00:00:00 2001 From: Mark Cave-Ayland Date: Sun, 24 Oct 2010 21:34:21 +0000 Subject: [PATCH] Reduce SPARC32 stack space since otherwise compiling with -O0 results in a 'rom: requested regions overlap (rom /home/build/rel-qemu-git/share/qemu/openbios-sparc32. free=0x0000000070101000, addr=0x0000000070000000) rom loading failed' error when starting qemu. Signed-off-by: Mark Cave-Ayland git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@920 f158a5a8-5612-0410-a976-696ce0be7e32 --- arch/sparc32/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/sparc32/context.c b/arch/sparc32/context.c index 498406d..d4d8530 100644 --- a/arch/sparc32/context.c +++ b/arch/sparc32/context.c @@ -11,7 +11,7 @@ #include "openbios.h" #define MAIN_STACK_SIZE 16384 -#define IMAGE_STACK_SIZE 4096*4 +#define IMAGE_STACK_SIZE 4096*2 #define debug printk