diff options
Diffstat (limited to 'sys/arch/mvme88k/stand/bootst')
-rw-r--r-- | sys/arch/mvme88k/stand/bootst/Makefile | 7 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/bootst/boot.c | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/sys/arch/mvme88k/stand/bootst/Makefile b/sys/arch/mvme88k/stand/bootst/Makefile index 8d765cc1766..165b38d8321 100644 --- a/sys/arch/mvme88k/stand/bootst/Makefile +++ b/sys/arch/mvme88k/stand/bootst/Makefile @@ -1,14 +1,15 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.5 1999/05/29 04:41:47 smurph Exp $ +# $OpenBSD: Makefile,v 1.6 1999/09/27 19:29:59 smurph Exp $ -RELOC=0xAF0000 +# 8Meg - 64K +RELOC=0x7F0000 SIZE?= size S= ${.CURDIR}/../../../.. DEFS= -DSTANDALONE -DCOMPAT_NOLABEL 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} LDFLAGS=-s -N -T ${RELOC} CLEANFILES+=stboot bootst bootst.bug diff --git a/sys/arch/mvme88k/stand/bootst/boot.c b/sys/arch/mvme88k/stand/bootst/boot.c index cfd82c463da..adec6f12d66 100644 --- a/sys/arch/mvme88k/stand/bootst/boot.c +++ b/sys/arch/mvme88k/stand/bootst/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.1 1998/12/15 06:09:51 smurph Exp $ */ +/* $OpenBSD: boot.c,v 1.2 1999/09/27 19:29:59 smurph Exp $ */ /*- * Changes Copyright (c) 1998 steve Murphree, Jr. * Copyright (c) 1982, 1986, 1990, 1993 @@ -53,7 +53,7 @@ int main() char line[80]; char *cp, *filename; int bflag = 0; - printf(">> OpenBSD MVME%x tapeboot [%s]\n", bugargs.cputyp, version); + printf(">> OpenBSD/mvme88k tapeboot [%s]\n", version); *bugargs.arg_end = 0; /* ensure */ parse_args(&filename, &bflag); |