Subject: Re: A booting problem
To: James Lees <james@pkl.net>
From: Simon J. Gerraty <sjg@crufty.net>
List: port-sparc
Date: 01/21/2003 23:33:05
>	I am having problems with my SparcStation 20. I have been 
>getting the thing to boot. After the traceback it has a panic 

>"panic:Memory address alignment
>rebooting..."

Check if your mk.conf is setting COPTS or DEFCOPTS, basically you need
to ensure if you do tweak those that you include -O2 without which
the kernel is sufficiently big to overwrite the bootloader
which results in various failures - similar to what you are getting
I believe.

FWIW in my mk.conf I have:

.if ${MACHINE_ARCH} == "sparc"
DEFCOPTS=-O2 -msupersparc
.endif

--sjg