diff options
author | johns <johns@cvs.openbsd.org> | 1997-05-24 09:22:21 +0000 |
---|---|---|
committer | johns <johns@cvs.openbsd.org> | 1997-05-24 09:22:21 +0000 |
commit | e7d8faa2e759e3705c273cf85f03eec13c82f0c1 (patch) | |
tree | da753a2c785fa80c19b7cafb43cd7b7c527f1f68 /sys/arch/sparc | |
parent | be2bac22c0f6efac4438cb7e53982dfed15151da (diff) |
Committing George's compressed boot block changes...
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/stand/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc/stand/Makefile.inc b/sys/arch/sparc/stand/Makefile.inc index fee77b15daa..961cc6eed7e 100644 --- a/sys/arch/sparc/stand/Makefile.inc +++ b/sys/arch/sparc/stand/Makefile.inc @@ -17,7 +17,9 @@ RELOC_SUN4C= 0x340000 RELOC_SUN4M= 0x440000 # Note: a `RELOC' value of 0x340000 seems to work on most machines -RELOC?= ${RELOC_SUN4C} +#RELOC?= ${RELOC_SUN4C} +# but a bigger 'RELOC' is needed for ramdisk kernels, requires 8M memory... +RELOC?= 0x740000 INCLUDES+= -I. -I${.CURDIR}/.. -I${S}/arch -I${S} -I${S}/lib/libsa DEFS+= -DSTANDALONE -DRELOC=${RELOC} -DSUN4 -DSUN4C -DSUN_BOOTPARAMS |