Installed the following snapshot
1.2.3-PRERELEASE-TESTING-VERSION
built on Tue Mar 24 23:54:30 EDT 2009
and it failed to boot with the following message
Trying to mount root from ufs:/dev/da0s1a
/etc/rc: 43: Syntax error: "else" unexpected (expecting "then")
I looked in the code and found the file had the following and it is missing a
"then" statement
if [ "$hideplatform" = "true" ];
platformbanner="" # hide the platform
else
platformbanner=" on the '${PLATFORM}' platform"
fi
added the "then" in there and it booted right up
-Sean