diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2001-01-13 05:19:02 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2001-01-13 05:19:02 +0000 |
commit | b2fc93362574ae97a3d3d367a3f18f9df09ebdec (patch) | |
tree | e3ebfa043bcdf243dc7894f0f6187d022dca0628 /sys/arch/mvme88k/stand/bootst | |
parent | 2c2cdb496b2db4e6759169e9d396fbb519037c56 (diff) |
Booting kernel with MACHINE_NEW_NONCONTIG. UVM code added but not working.
New stand config. Lots of header fixes. Can now cross-compile i386->m88k.
Diffstat (limited to 'sys/arch/mvme88k/stand/bootst')
-rw-r--r-- | sys/arch/mvme88k/stand/bootst/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/arch/mvme88k/stand/bootst/Makefile b/sys/arch/mvme88k/stand/bootst/Makefile index 165b38d8321..82f0a38f81a 100644 --- a/sys/arch/mvme88k/stand/bootst/Makefile +++ b/sys/arch/mvme88k/stand/bootst/Makefile @@ -1,8 +1,6 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.6 1999/09/27 19:29:59 smurph Exp $ +# $OpenBSD: Makefile,v 1.7 2001/01/13 05:19:00 smurph Exp $ -# 8Meg - 64K -RELOC=0x7F0000 SIZE?= size S= ${.CURDIR}/../../../.. @@ -10,7 +8,7 @@ DEFS= -DSTANDALONE -DCOMPAT_NOLABEL INCPATH=-I${.CURDIR} -I${.CURDIR}/../libsa -I${.CURDIR}/../libbug \ -I${.CURDIR}/../../include -I${S} -I${S}/lib/libsa CFLAGS=-O0 ${INCPATH} ${DEFS} ${COPTS} -LDFLAGS=-s -N -T ${RELOC} +LDFLAGS=-s -N -T ${STAGE2_RELOC} CLEANFILES+=stboot bootst bootst.bug .include "${S}/arch/mvme88k/stand/wrtvid/Makefile.inc" @@ -30,8 +28,8 @@ ALL= ${BOOTS} all: ${ALL} -bootst.bug: ${OBJS} ${BUGCRT} ${LIBS} - ${LD} ${LDFLAGS} ${BUGCRT} ${OBJS} ${LIBS} -o $@ +bootst.bug: ${OBJS} ${SINGLE} ${LIBS} + ${LD} ${LDFLAGS} ${SINGLE} ${OBJS} ${LIBS} -o $@ @${SIZE} bootst.bug bootst stboot: bootst.bug ${WRTVID} |