diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-26 01:56:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-26 01:56:35 +0000 |
commit | f65d46ce3ea0a929f4176f0c555af1a4f3ae756f (patch) | |
tree | 3aa99a41d4cdc8670688ff407bde0061db4327e4 /distrib | |
parent | f5a856d8a733d24400f63121a473befae5b50e32 (diff) |
I really don't think this script even works but convert old-style
newfs to use -T anyway.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/atari/inst/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/atari/inst/install.sh b/distrib/atari/inst/install.sh index 51802b8f00a..242462aaae3 100644 --- a/distrib/atari/inst/install.sh +++ b/distrib/atari/inst/install.sh @@ -178,7 +178,7 @@ while [ "$answer" = "" ]; do esac done echo "Initializing / (root) filesystem, and mounting..." -$DONTDOIT newfs /dev/r${rdev}a $name +$DONTDOIT newfs -T $name /dev/r${rdev}a $DONTDOIT mount_ffs /dev/${rdev}a /mnt echo "" echo -n "Creating a fstab..." @@ -250,7 +250,7 @@ done echo "" echo "Initializing /usr filesystem, and mounting..." -$DONTDOIT newfs /dev/r${usrpart} $name +$DONTDOIT newfs -T $name /dev/r${usrpart} $DONTDOIT mkdir -p /mnt/usr $DONTDOIT mount_ffs /dev/${usrpart} /mnt/usr echo "" |