summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/arch/mvme68k/stand/Makefile.inc6
-rw-r--r--sys/arch/mvme68k/stand/bootsd/version.c5
-rw-r--r--sys/arch/mvme68k/stand/bootst/version.c5
-rw-r--r--sys/arch/mvme68k/stand/netboot/version.c5
4 files changed, 12 insertions, 9 deletions
diff --git a/sys/arch/mvme68k/stand/Makefile.inc b/sys/arch/mvme68k/stand/Makefile.inc
index 04e8e79dcf8..c7df5f59d38 100644
--- a/sys/arch/mvme68k/stand/Makefile.inc
+++ b/sys/arch/mvme68k/stand/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.10 2013/02/10 20:27:18 miod Exp $
+# $OpenBSD: Makefile.inc,v 1.11 2013/05/12 08:10:07 miod Exp $
MDEC_DIR?=/usr/mdec
CFLAGS+=-Wall -Werror -fno-stack-protector
@@ -7,7 +7,7 @@ CFLAGS+=-DHEAP_START=${HEAP_START}
# Load addresses for first and second stage bootstraps
STAGE1_RELOC= 0x00100000
-STAGE2_RELOC= 0x006f0000
+STAGE2_RELOC= 0x005f0000
# Base of the heap (ethernet buffers will be allocated below it)
-HEAP_START= 0x00800000
+HEAP_START= 0x00700000
diff --git a/sys/arch/mvme68k/stand/bootsd/version.c b/sys/arch/mvme68k/stand/bootsd/version.c
index b3e70faf756..fbbe05b707b 100644
--- a/sys/arch/mvme68k/stand/bootsd/version.c
+++ b/sys/arch/mvme68k/stand/bootsd/version.c
@@ -1,7 +1,8 @@
-/* $OpenBSD: version.c,v 1.9 2012/12/31 21:35:32 miod Exp $ */
+/* $OpenBSD: version.c,v 1.10 2013/05/12 08:10:07 miod Exp $ */
/*
+ * 1.10 lower load address and heap location by 1MB to fit 8MB boards
* 1.9 kernel loaded with loadfile, a.out and ELF formats
*/
-char *version = "1.9";
+char *version = "1.10";
diff --git a/sys/arch/mvme68k/stand/bootst/version.c b/sys/arch/mvme68k/stand/bootst/version.c
index ac16dc94869..157523fdb88 100644
--- a/sys/arch/mvme68k/stand/bootst/version.c
+++ b/sys/arch/mvme68k/stand/bootst/version.c
@@ -1,8 +1,9 @@
-/* $OpenBSD: version.c,v 1.5 2013/04/14 19:05:19 miod Exp $ */
+/* $OpenBSD: version.c,v 1.6 2013/05/12 08:10:07 miod Exp $ */
/*
+ * 1.6 lower load address and heap location by 1MB to fit 8MB boards
* 1.5 do not load kernel symbols to avoid seeking backwards
* 1.4 kernel loaded with loadfile, a.out and ELF formats
*/
-char *version = "1.5";
+char *version = "1.6";
diff --git a/sys/arch/mvme68k/stand/netboot/version.c b/sys/arch/mvme68k/stand/netboot/version.c
index be48e05d4e1..a991e7920ac 100644
--- a/sys/arch/mvme68k/stand/netboot/version.c
+++ b/sys/arch/mvme68k/stand/netboot/version.c
@@ -1,7 +1,8 @@
-/* $OpenBSD: version.c,v 1.8 2012/12/31 21:35:32 miod Exp $ */
+/* $OpenBSD: version.c,v 1.9 2013/05/12 08:10:07 miod Exp $ */
/*
+ * 1.9 lower load address and heap location by 1MB to fit 8MB boards
* 1.8 kernel loaded with loadfile, a.out and ELF formats
*/
-char *version = "1.8";
+char *version = "1.9";