diff options
-rwxr-xr-x | etc/rc.cdrom | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/rc.cdrom b/etc/rc.cdrom index 2018fe9..c1eb8f3 100755 --- a/etc/rc.cdrom +++ b/etc/rc.cdrom @@ -39,6 +39,12 @@ newfs /dev/${device} > /dev/null 2>&1 mount /dev/${device} /home echo "done." +echo -n "Generating a MFS / partition... " +device=$(mdconfig -a -t malloc -s ${partsize}) +newfs /dev/${device} > /dev/null 2>&1 +mount /dev/${device} / +echo "done." + # Create some needed directories /bin/mkdir -p /var/db/pkg/ /bin/mkdir -p /var/tmp/vi.recover/ |