diff options
author | 2001-03-27 21:13:51 +0000 | |
---|---|---|
committer | 2001-03-27 21:13:51 +0000 | |
commit | a42d9ff94f4b58343166f3dfdcf7f618659470ec (patch) | |
tree | 048da9ac76d6f98003325c704d911e7f5fedaf9f | |
parent | Fix another memory leak, found by boehm-gc. While not required, (diff) | |
download | wireguard-openbsd-a42d9ff94f4b58343166f3dfdcf7f618659470ec.tar.xz wireguard-openbsd-a42d9ff94f4b58343166f3dfdcf7f618659470ec.zip |
Move the boot loader relocation address higher, for full-featured
(GENERIC) kernel to fit. ``experienced by'' & ok smurph@
-rw-r--r-- | sys/arch/mvme88k/stand/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/stand/Makefile.inc b/sys/arch/mvme88k/stand/Makefile.inc index 998c69f16a4..5a0216193f1 100644 --- a/sys/arch/mvme88k/stand/Makefile.inc +++ b/sys/arch/mvme88k/stand/Makefile.inc @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile.inc,v 1.3 2001/01/13 05:19:00 smurph Exp $ +# $OpenBSD: Makefile.inc,v 1.4 2001/03/27 21:13:51 miod Exp $ MDEC_DIR?=/usr/mdec # Load addresses for first and second stage bootstraps -STAGE1_RELOC=0x001F0000 +STAGE1_RELOC=0x009F0000 STAGE2_RELOC=0x00AF0000 |