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/netboot | |
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/netboot')
-rw-r--r-- | sys/arch/mvme88k/stand/netboot/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sys/arch/mvme88k/stand/netboot/Makefile b/sys/arch/mvme88k/stand/netboot/Makefile index b52c0ff2858..948abdb142c 100644 --- a/sys/arch/mvme88k/stand/netboot/Makefile +++ b/sys/arch/mvme88k/stand/netboot/Makefile @@ -1,8 +1,5 @@ +# $OpenBSD: Makefile,v 1.8 2001/01/13 05:19:01 smurph Exp $ -# $OpenBSD: Makefile,v 1.7 1999/09/27 19:30:01 smurph Exp $ - -# 8Meg - 64K -RELOC=0x7F0000 SIZE?= size STRIP?= strip @@ -24,14 +21,14 @@ SRCS+= if_ie.c #SRCS+= if_le.c OBJS= ${SRCS:S/.c/.o/g} LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} ${LIBGCC} -LDFLAGS+= -s -N -T ${RELOC} +LDFLAGS+= -s -N -T ${STAGE2_RELOC} #LDFLAGS+= -nostdlib -s -N -Ttext ${RELOC} all: netboot.bin -netboot: ${OBJS} ${BUGCRT} ${LIBS} +netboot: ${OBJS} ${SINGLE} ${LIBS} ${LD} ${LDFLAGS} \ - ${BUGCRT} ${OBJS} ${LIBS} -o $@ + ${SINGLE} ${OBJS} ${LIBS} -o $@ # @${SIZE} $@ netboot.bin: netboot |