Change all occurences of ufs to ffs.

This commit is contained in:
leo 1995-08-25 19:17:28 +00:00
parent c94617858b
commit f3997751d0
3 changed files with 7 additions and 9 deletions

View File

@ -1,5 +1,5 @@
#
# $NetBSD: instbin.conf,v 1.3 1995/08/19 23:01:27 leo Exp $
# $NetBSD: instbin.conf,v 1.4 1995/08/25 19:17:44 leo Exp $
#
# kcbin.conf - unified binary for the kc floppy
#
@ -14,7 +14,6 @@ progs sh shutdown slattach strings stty sync tar test tip umount update
ln chown chgrp
ln gzip gzcat gunzip
ln mount_ffs mount_ufs
ln reboot halt
ln sh -sh # init invokes the shell this way
ln test [

View File

@ -1,5 +1,5 @@
#
# $NetBSD: list,v 1.3 1995/08/19 23:01:29 leo Exp $
# $NetBSD: list,v 1.4 1995/08/25 19:17:45 leo Exp $
#
# copy the crunched binary, link to it, and kill it
@ -34,7 +34,6 @@ LINK instbin sbin/mount_cd9660
LINK instbin sbin/mount_msdos
LINK instbin sbin/mount_nfs
LINK instbin sbin/mount_ffs
LINK instbin sbin/mount_ufs
LINK instbin sbin/newfs
LINK instbin sbin/reboot
LINK instbin sbin/route

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $NetBSD: install.sh,v 1.1.1.1 1995/04/17 19:08:52 leo Exp $
# $NetBSD: install.sh,v 1.2 1995/08/25 19:17:28 leo Exp $
#
# Copyright (c) 1994 Christopher G. Demetriou
# All rights reserved.
@ -179,11 +179,11 @@ while [ "$answer" = "" ]; do
done
echo "Initializing / (root) filesystem, and mounting..."
$DONTDOIT newfs /dev/r${rdev}a $name
$DONTDOIT mount -v /dev/${rdev}a /mnt
$DONTDOIT mount_ffs /dev/${rdev}a /mnt
echo ""
echo -n "Creating a fstab..."
mkdir -p $FSTABDIR
echo "/dev/${rdev}a / ufs rw 1 1" > $FSTAB
echo "/dev/${rdev}a / ffs rw 1 1" > $FSTAB
# get rid of this partition
shiftvar $rdev
@ -252,10 +252,10 @@ echo ""
echo "Initializing /usr filesystem, and mounting..."
$DONTDOIT newfs /dev/r${usrpart} $name
$DONTDOIT mkdir -p /mnt/usr
$DONTDOIT mount -v /dev/${usrpart} /mnt/usr
$DONTDOIT mount_ffs /dev/${usrpart} /mnt/usr
echo ""
echo -n "Adding to fstab..."
echo "/dev/${usrpart} /usr ufs rw 1 2" >> $FSTAB
echo "/dev/${usrpart} /usr ffs rw 1 2" >> $FSTAB
sync
echo " done."