Custom installer woes (can't mount / RW)

2011-08-31 Thread Daniel O'Connor
Hi, I'm trying to create a custom installer for FreeBSD to automatically setup our systems, however I am having a very odd problem. The general idea is that I build a release, then create a chroot in which I install the slab of required ports for our system. I then tar that up and format a USB

Re: Custom installer woes (can't mount / RW)

2011-09-01 Thread Craig Rodrigues
Hi, Does it make a difference if you change this line in your script: echo '/dev/gpt/swap / swapsw 0 0' >>${TMPDIR}/mnt/etc/fstab to: echo '/dev/gpt/swap noneswapsw 0 0' >>${TMPDIR}/mnt/etc/fstab Mounting of the root file system

Re: Custom installer woes (can't mount / RW)

2011-09-01 Thread Daniel O'Connor
On 01/09/2011, at 18:17, Craig Rodrigues wrote: > Does it make a difference if you change this line in your script: > > echo '/dev/gpt/swap / swapsw 0 0' > >>${TMPDIR}/mnt/etc/fstab > > to: > > echo '/dev/gpt/swap noneswapsw 0 0' > >