#!/bin/sh -
#
# Copyright (c) 1992 The Regents of the University of California.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
#    must display the following acknowledgement:
#	This product includes software developed by the University of
#	California, Berkeley and its contributors.
# 4. Neither the name of the University nor the names of its contributors
#    may be used to endorse or promote products derived from this software
#    without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
#	@(#)get1	7.1 (Berkeley) 4/20/92
#

# Shell script to build a mini-root file system in preparation for building
# a distribution tape.  The file system created here is image copied onto
# tape, then image copied onto disk as the "first" step in a cold boot o
# 4.3 systems.

DISTROOT=/usr/obj
DISTUSR=/usr/obj/usr.bin
DISTSRC=/bsd3/src

if [ `pwd` = '/' ]
then
	echo You just '(almost)' destroyed the root
	exit
fi
#cp /tmp/stripped_vmunix vmunix

# create necessary directories
DIRLIST="bin dev etc a tmp stand sbin usr sys"
rm -rf $DIRLIST
mkdir $DIRLIST

ETC="disktab"
for i in $ETC; do
	cp $DISTSRC/etc/etc.pmax/$i etc/$i
done

# disklabel
SBIN="fsck ifconfig init mknod mount newfs restore \
	rrestore umount"
for i in $SBIN; do
	cp $DISTROOT/sbin/$i/$i sbin/$i
done

# ed
BIN="test cat cp dd echo expr ls mkdir mv rcp rm sh stty sync"
UBIN="awk make mt"
for i in $BIN; do
	cp $DISTROOT/bin/$i/$i bin/$i
done
#for i in $UBIN; do
#	cp $DISTUSR/$i/$i bin/$i
#done
ln bin/stty bin/STTY
ln bin/test bin/[

#cp /nbsd/sys/floppy/[Ma-z0-9]* sys/floppy
#cp /nbsd/sys/consolerl/[Ma-z0-9]* sys/consolerl
#cp -r /nbsd/sys/cassette/[Ma-z0-9]* sys/cassette
#cp /nbsd/sys/cassette/[Ma-z0-9]* sys/cassette
#cp $DISTROOT/boot boot
#cp $DISTROOT/pcs750.bin pcs750.bin
cp $DISTROOT/.profile .profile

cat >etc/passwd <<EOF
root::0:10::/:/bin/sh
daemon:*:1:1::/:
EOF

cat >etc/group <<EOF
system:*:0:
daemon:*:1:
uucp:*:2:
kmem:*:3:
bin:*:4:
news:*:8:
staff:*:10:
operator:*:28:
EOF

cat >etc/fstab <<EOF
/dev/rz0a	/	ufs	rw	1 1
/dev/rz0g	/usr	ufs	rw	1 2
EOF

#cat >xtr <<'EOF'
#: ${disk?'Usage: disk=xx0 type=tt tape=yy xtr'}
#: ${type?'Usage: disk=xx0 type=tt tape=yy xtr'}
#: ${tape?'Usage: disk=xx0 type=tt tape=yy xtr'}
#echo 'Build root file system'
#newfs ${disk}a ${type}
#sync
#echo 'Check the file system'
#fsck /dev/r${disk}a
#mount /dev/${disk}a /a
#cd /a
#echo 'Rewind tape'
#mt -f /dev/${tape}0 rew
#echo 'Restore the dump image of the root'
#restore rsf 3 /dev/${tape}0
#cd /
#sync
#umount /dev/${disk}a
#sync
#fsck /dev/r${disk}a
#echo 'Root filesystem extracted'
#echo
#echo 'If this is an 8650 or 8600, update the console rl02'
#echo 'If this is a 780 or 785, update the floppy'
#echo 'If this is a 730, update the cassette'
#EOF
#chmod +x xtr

cp $DISTSRC/etc/etc.pmax/MAKEDEV dev
chmod +x dev/MAKEDEV
cp /dev/null dev/MAKEDEV.local
cd dev
./MAKEDEV std dc0 rz0 tz0 pm0 pty0
cd ..
sync
