diff options
author | mjacob <mjacob@FreeBSD.org> | 2000-09-18 08:16:38 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2000-09-18 08:16:38 +0000 |
commit | 73a36ed9f135844114910a0ef1dfc128e67d916d (patch) | |
tree | 7bdffe3dcd5ff3c8cf75cc987780aa850eecf90c /sys/boot/alpha | |
parent | 2a3644510ab8251d7f291c1ab0d939092cba0501 (diff) | |
download | FreeBSD-src-73a36ed9f135844114910a0ef1dfc128e67d916d.zip FreeBSD-src-73a36ed9f135844114910a0ef1dfc128e67d916d.tar.gz |
Make the stack 12K- we seem to need a bit more.
Rename 'stack' to 'stackbase' as this variable
more correctly denotes what it is.
Diffstat (limited to 'sys/boot/alpha')
-rw-r--r-- | sys/boot/alpha/libalpha/start.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/boot/alpha/libalpha/start.S b/sys/boot/alpha/libalpha/start.S index e6af931..1830baf 100644 --- a/sys/boot/alpha/libalpha/start.S +++ b/sys/boot/alpha/libalpha/start.S @@ -45,7 +45,7 @@ .set noreorder /* don't reorder instructions */ #define ENTRY_FRAME 32 -#define STACK_SIZE 8192 +#define STACK_SIZE 12288 NESTED(start, 1, ENTRY_FRAME, ra, 0, 0) br pv,Lstartgp @@ -58,7 +58,7 @@ Lstartgp: CALL(bzero) #ifndef BOOT1 - lda sp,stack + STACK_SIZE - ENTRY_FRAME + lda sp,stackbase + STACK_SIZE - ENTRY_FRAME #endif CALL(main) /* transfer to C */ @@ -85,5 +85,5 @@ LEAF(cpu_number, 0) END(cpu_number) #ifndef BOOT1 -BSS(stack, STACK_SIZE) +BSS(stackbase, STACK_SIZE) #endif |