diff options
-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 |