Removed mount -at ufs command, since it is now done by the .profile

file left by inst1.install.

Fixed cpio command so that it works with the new cpio that does not
ignore extra options.

Added echo's about building /dev files so the user knows it is doing something.
This commit is contained in:
Rodney W. Grimes 1993-08-26 03:20:28 +00:00
parent f821ac3089
commit 95a36318cc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=331

View File

@ -9,7 +9,6 @@
# Installs balance of basic FreeBSD system.
#
mount -at ufs
echo -n "Verbose installation? [n] "
read resp
case $resp in
@ -21,14 +20,17 @@ case $resp in
;;
esac
echo Copying to disk.
echo "Copying to disk..."
cd /
cat mnt/inst2.cpio.gz | mnt/usr/bin/gunzip | cpio -idalmu${cpioverbose}
cat mnt/inst2.cpio.gz | mnt/usr/bin/gunzip | cpio -idmu${cpioverbose}
cd /mnt
ls .profile install | cpio -pdalmu${cpioverbose} /
ls .profile install usr/bin/* | cpio -pdmu${cpioverbose} /
cd /dev
echo " done."
echo "Building /dev files..."
sh MAKEDEV all
cd /
echo " done."
sync