64eb68b1e5
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.
21 lines
321 B
Bash
Executable File
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
|