mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 06:42:51 +01:00
21 lines
321 B
Plaintext
21 lines
321 B
Plaintext
|
#!/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
|