freebsd-dev/etc/etc.i386/cpio.install
Rodney W. Grimes 64eb68b1e5 Major hackery to get the 1.1 Beta floppies building. Have a special
pair of crunched binaries that are not built by this, but other than
that it is back to an automated procedure.  So many changes it is
hard to describe.
1994-02-21 21:52:00 +00:00

21 lines
321 B
Bash
Executable File

#!/bin/sh
#
# $Id$
#
echo
echo -n "Copying to disk... "
cd /
gunzip < mnt/inst2.cpio.gz | cpio -idmu
cd /mnt
echo -n "Copying more to disk... "
ls install magic | cpio -pdmu /
echo -n "Copying even more to disk... "
ls rc | cpio -pdmu /etc
echo -n "Building /dev files... "
cd /dev
sh MAKEDEV all
cd /
echo "done."
sync