diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-02-17 18:42:07 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-02-17 18:42:07 +0000 |
commit | 5b9bd30fe6b44fbae7ef327fbb4a7ea3390ac4c1 (patch) | |
tree | 74ebcea6fa8742b4d3cce14511c68c5e70667ba3 /sys/arch/mvme68k/stand/netboot/Makefile | |
parent | c08507e1938fc34b95315ffde083468e6ab0585d (diff) |
Move ethernet buffers higher in memory, just below our text, to allow
larger bsd.rd to load correctly. Tested on MVME147 (if_le) and MVME167 (if_ie).
Diffstat (limited to 'sys/arch/mvme68k/stand/netboot/Makefile')
-rw-r--r-- | sys/arch/mvme68k/stand/netboot/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/stand/netboot/Makefile b/sys/arch/mvme68k/stand/netboot/Makefile index 967c9eb97b3..473badbaf03 100644 --- a/sys/arch/mvme68k/stand/netboot/Makefile +++ b/sys/arch/mvme68k/stand/netboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2006/01/10 07:36:32 miod Exp $ +# $OpenBSD: Makefile,v 1.15 2009/02/17 18:42:06 miod Exp $ SIZE?= size @@ -7,6 +7,7 @@ DEFS= -DSUN_BOOTPARAMS -DRELOC=${STAGE2_RELOC} INCPATH=-I${.CURDIR} -I${.CURDIR}/../libsa -I${.CURDIR}/../libbug \ -I${S} -I${S}/lib/libsa CFLAGS+= -O2 ${DEFS} ${INCPATH} ${COPTS} +CFLAGS+=-DSTAGE2_RELOC=${STAGE2_RELOC} CLEANFILES+=netboot netboot.bin .include "${S}/arch/mvme68k/stand/bugcrt/Makefile.inc" |