diff options
author | 2013-04-18 20:43:16 +0000 | |
---|---|---|
committer | 2013-04-18 20:43:16 +0000 | |
commit | 1fecfb377b969b54e7f6f9d2e8b4c14ebc1e7679 (patch) | |
tree | 5a76c0bb03cd4ca7f503e76a2aa088adfce21272 /sys | |
parent | "160 chars ought to be enough for everybody" (diff) | |
download | wireguard-openbsd-1fecfb377b969b54e7f6f9d2e8b4c14ebc1e7679.tar.xz wireguard-openbsd-1fecfb377b969b54e7f6f9d2e8b4c14ebc1e7679.zip |
Lower boot blocks load address, so that they fit within 8MB. Step 1 of many
towards getting Angelfire boards (MVME180/181) running.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/stand/Makefile.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/stand/Makefile.inc b/sys/arch/mvme88k/stand/Makefile.inc index 54f2f1774a9..d5fd9d07fd0 100644 --- a/sys/arch/mvme88k/stand/Makefile.inc +++ b/sys/arch/mvme88k/stand/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.12 2012/12/01 21:08:18 miod Exp $ +# $OpenBSD: Makefile.inc,v 1.13 2013/04/18 20:43:16 miod Exp $ MDEC_DIR?=/usr/mdec CFLAGS+=-Wall -Werror -fno-stack-protector -mmemcpy @@ -6,8 +6,8 @@ CFLAGS+=-fno-builtin-printf -fno-builtin-putchar -fno-builtin-vprintf CFLAGS+=-DHEAP_START=${HEAP_START} # Load addresses for first and second stage bootstraps -STAGE1_RELOC= 0x009f0000 -STAGE2_RELOC= 0x00af0000 +STAGE1_RELOC= 0x00680000 +STAGE2_RELOC= 0x00780000 # Base of the heap (ethernet buffers will be allocated below it) -HEAP_START= 0x00c00000 +HEAP_START= 0x00700000 |