diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1999-09-27 19:30:02 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1999-09-27 19:30:02 +0000 |
commit | 43fce7b667be075e444ebd5979a58091cd97166c (patch) | |
tree | 6fe55d0ae04f5fbdb4618e2e265c141309727dc4 /sys/arch/mvme88k/stand/bootxx | |
parent | 4ba4b9dc1e91263d6d8e54808c9bf4cee3ca39e5 (diff) |
changed loader load address.
Diffstat (limited to 'sys/arch/mvme88k/stand/bootxx')
-rw-r--r-- | sys/arch/mvme88k/stand/bootxx/Makefile | 6 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/bootxx/bootxx.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/mvme88k/stand/bootxx/Makefile b/sys/arch/mvme88k/stand/bootxx/Makefile index 1e04e3eaf25..7a944c54b8f 100644 --- a/sys/arch/mvme88k/stand/bootxx/Makefile +++ b/sys/arch/mvme88k/stand/bootxx/Makefile @@ -1,13 +1,13 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.4 1999/05/29 04:41:48 smurph Exp $ +# $OpenBSD: Makefile,v 1.5 1999/09/27 19:29:59 smurph Exp $ -RELOC=0xAF0000 +RELOC=0x1F0000 S= ${.CURDIR}/../../../.. DEFS= INCPATH=-I${.CURDIR} -I${.CURDIR}/../libsa -I${.CURDIR}/../libbug \ -I${.CURDIR}/../../include -I${S} -I${S}/lib/libsa -CFLAGS= -O2 ${INCPATH} ${DEFS} ${COPTS} +CFLAGS=-O0 ${INCPATH} ${DEFS} ${COPTS} CLEANFILES+=bootxx .include "${S}/arch/mvme88k/stand/bugcrt/Makefile.inc" diff --git a/sys/arch/mvme88k/stand/bootxx/bootxx.c b/sys/arch/mvme88k/stand/bootxx/bootxx.c index d55a99bb711..313fa9d32a5 100644 --- a/sys/arch/mvme88k/stand/bootxx/bootxx.c +++ b/sys/arch/mvme88k/stand/bootxx/bootxx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bootxx.c,v 1.2 1998/12/15 06:32:34 smurph Exp $ */ +/* $OpenBSD: bootxx.c,v 1.3 1999/09/27 19:29:59 smurph Exp $ */ /* * Copyright (c) 1994 Paul Kranenburg @@ -51,7 +51,7 @@ /* * Boot device is derived from ROM provided information. */ -#define LOADADDR 0xCf0000 /* where to load level 2 bootstrap */ +#define LOADADDR 0x7F0000 /* where to load level 2 bootstrap */ /* (l2 must relocate itself) */ /* This determines the largest boot program we can load. */ |