diff options
Diffstat (limited to 'sys/arch/mvme88k/stand/Makefile.inc')
-rw-r--r-- | sys/arch/mvme88k/stand/Makefile.inc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/stand/Makefile.inc b/sys/arch/mvme88k/stand/Makefile.inc index c92f766a57d..0cefb409fd9 100644 --- a/sys/arch/mvme88k/stand/Makefile.inc +++ b/sys/arch/mvme88k/stand/Makefile.inc @@ -1,10 +1,12 @@ -# $OpenBSD: Makefile.inc,v 1.10 2006/05/16 22:52:07 miod Exp $ +# $OpenBSD: Makefile.inc,v 1.11 2009/01/18 21:49:09 miod Exp $ MDEC_DIR?=/usr/mdec CFLAGS+=-Wall -Werror -fno-stack-protector -mmemcpy +CFLAGS+=-DHEAP_START=${HEAP_START} # Load addresses for first and second stage bootstraps -STAGE1_RELOC=0x009F0000 -STAGE2_RELOC=0x00AF0000 - +STAGE1_RELOC= 0x009f0000 +STAGE2_RELOC= 0x00af0000 +# Base of the heap (ethernet buffers will be allocated below it) +HEAP_START= 0x00c00000 |