I want to build an 'instance' of FreeBSD 7.2 in a directory (in this case /usr/home/MYRELEASE) so that I can have a few other FreeBSD servers pull down that 'instance' (using rsync) to use as their base OS. Reading /usr/src/UPDATING, I believe this is considered a cross-install. If so, I'm curious if this seems to be the right commands to do it:
Is there anything else I might need to do as part of this?
Code:
make buildworld
make buildkernel KERNCONF=MYKERNEL
make installworld DESTDIR=/usr/home/MYRELEASE
make distribution DESTDIR=/usr/home/MYRELEASE
make installkernel KERNCONF=MYKERNEL DESTDIR=/usr/home/MYRELEASE
Is there anything else I might need to do as part of this?