1993-10-12 06:22:19 +03:00
|
|
|
#!/bin/sh -
|
|
|
|
#
|
1994-05-27 12:39:00 +04:00
|
|
|
# Copyright (c) 1992, 1993
|
|
|
|
# The Regents of the University of California. All rights reserved.
|
1993-10-12 06:22:19 +03:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
1994-05-27 12:39:00 +04:00
|
|
|
# from: @(#)get 8.2 (Berkeley) 11/30/93
|
|
|
|
# $Id: get,v 1.2 1994/05/27 08:40:21 glass Exp $
|
1993-10-12 06:22:19 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# 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
|
1994-05-27 12:39:00 +04:00
|
|
|
# tape, then image copied onto disk as the "first" step in a cold boot of
|
|
|
|
# 4.3BSD systems.
|
|
|
|
#
|
|
|
|
DISTROOT=
|
|
|
|
#
|
1993-10-12 06:22:19 +03:00
|
|
|
if [ `pwd` = '/' ]
|
|
|
|
then
|
|
|
|
echo You just '(almost)' destroyed the root
|
|
|
|
exit
|
|
|
|
fi
|
1994-05-27 12:39:00 +04:00
|
|
|
|
|
|
|
# copy in kernel
|
|
|
|
cp $DISTROOT/sys/compile/GENERIC.pmax/vmunix .
|
1993-10-12 06:22:19 +03:00
|
|
|
|
|
|
|
# create necessary directories
|
1994-05-27 12:39:00 +04:00
|
|
|
DIRLIST="bin dev etc a tmp stand sbin usr usr/mdec"
|
1993-10-12 06:22:19 +03:00
|
|
|
rm -rf $DIRLIST
|
|
|
|
mkdir $DIRLIST
|
|
|
|
|
1994-05-27 12:39:00 +04:00
|
|
|
ETC="disktab services"
|
1993-10-12 06:22:19 +03:00
|
|
|
for i in $ETC; do
|
|
|
|
cp $DISTROOT/etc/$i etc/$i
|
|
|
|
done
|
|
|
|
|
1994-05-27 12:39:00 +04:00
|
|
|
SBIN="disklabel fsck ifconfig init mknod mount newfs restore umount"
|
|
|
|
USBIN="pwd_mkdb"
|
1993-10-12 06:22:19 +03:00
|
|
|
for i in $SBIN; do
|
|
|
|
cp $DISTROOT/sbin/$i sbin/$i
|
|
|
|
done
|
1994-05-27 12:39:00 +04:00
|
|
|
for i in $USBIN; do
|
|
|
|
cp $DISTROOT/usr/sbin/$i sbin/$i
|
|
|
|
done
|
|
|
|
ln sbin/restore sbin/rrestore
|
1993-10-12 06:22:19 +03:00
|
|
|
|
1994-05-27 12:39:00 +04:00
|
|
|
BIN="[ cat cp dd echo ed expr ls mkdir mv pax rcp rm sh stty sync"
|
|
|
|
UBIN="awk mt"
|
1993-10-12 06:22:19 +03:00
|
|
|
for i in $BIN; do
|
|
|
|
cp $DISTROOT/bin/$i bin/$i
|
|
|
|
done
|
|
|
|
for i in $UBIN; do
|
1994-05-27 12:39:00 +04:00
|
|
|
cp $DISTROOT/usr/bin/$i bin/$i
|
|
|
|
done
|
|
|
|
ln bin/[ bin/test
|
|
|
|
|
|
|
|
MDEC="rzboot bootrz"
|
|
|
|
for i in $MDEC; do
|
|
|
|
cp $DISTROOT/usr/mdec/$i usr/mdec/$i
|
1993-10-12 06:22:19 +03:00
|
|
|
done
|
|
|
|
|
1994-05-27 12:39:00 +04:00
|
|
|
DOT=".profile"
|
|
|
|
for i in $DOT; do
|
|
|
|
cp $DISTROOT/$i $i
|
|
|
|
done
|
1993-10-12 06:22:19 +03:00
|
|
|
|
1994-05-27 12:39:00 +04:00
|
|
|
# initialize /dev
|
|
|
|
cp $DISTROOT/dev/MAKEDEV dev/MAKEDEV
|
|
|
|
chmod +x dev/MAKEDEV
|
|
|
|
cp /dev/null dev/MAKEDEV.local
|
|
|
|
(cd dev; ./MAKEDEV std dc0 scc0 rz0 rz1 rz2 rz3 rz4 tz0 tz1 \
|
|
|
|
pm0 cfb0 xcfb0 mfb0 pty0)
|
|
|
|
|
|
|
|
# initialize /etc/passwd
|
1993-10-12 06:22:19 +03:00
|
|
|
cat >etc/passwd <<EOF
|
1994-05-27 12:39:00 +04:00
|
|
|
root::0:0::/:/bin/sh
|
1993-10-12 06:22:19 +03:00
|
|
|
daemon:*:1:1::/:
|
|
|
|
EOF
|
1994-05-27 12:39:00 +04:00
|
|
|
cat >etc/master.passwd <<EOF
|
|
|
|
root::0:0::0:0::/:/bin/sh
|
|
|
|
daemon:*:1:1::0:0::/root:
|
|
|
|
EOF
|
1993-10-12 06:22:19 +03:00
|
|
|
|
1994-05-27 12:39:00 +04:00
|
|
|
# initialize /etc/group
|
1993-10-12 06:22:19 +03:00
|
|
|
cat >etc/group <<EOF
|
|
|
|
system:*:0:
|
|
|
|
daemon:*:1:
|
|
|
|
uucp:*:2:
|
|
|
|
kmem:*:3:
|
|
|
|
bin:*:4:
|
|
|
|
news:*:8:
|
|
|
|
staff:*:10:
|
|
|
|
operator:*:28:
|
|
|
|
EOF
|
|
|
|
|
1994-05-27 12:39:00 +04:00
|
|
|
# initialize /etc/fstab
|
1993-10-12 06:22:19 +03:00
|
|
|
cat >etc/fstab <<EOF
|
|
|
|
/dev/rz0a / ufs rw 1 1
|
1994-05-27 12:39:00 +04:00
|
|
|
/dev/rz0g /usr ufs xx 1 2
|
1993-10-12 06:22:19 +03:00
|
|
|
EOF
|
|
|
|
|
1994-05-27 12:39:00 +04:00
|
|
|
# create xtr script
|
1993-10-12 06:22:19 +03:00
|
|
|
cat >xtr <<'EOF'
|
1994-05-27 12:39:00 +04:00
|
|
|
#!/bin/sh -e
|
|
|
|
: ${disk?'Usage: disk=xx0 tape=yy0 [type=zz] xtr'}
|
|
|
|
: ${tape?'Usage: disk=xx0 tape=yy0 [type=zz] xtr'}
|
1993-10-12 06:22:19 +03:00
|
|
|
echo 'Build root file system'
|
1994-05-27 12:39:00 +04:00
|
|
|
disklabel -W /dev/r${disk}c ${type}
|
|
|
|
disklabel -w -r -B /dev/r${disk}c ${type}
|
|
|
|
newfs /dev/r${disk}a ${type}
|
1993-10-12 06:22:19 +03:00
|
|
|
sync
|
1994-05-27 12:39:00 +04:00
|
|
|
mount -u /
|
1993-10-12 06:22:19 +03:00
|
|
|
echo 'Check the file system'
|
|
|
|
fsck /dev/r${disk}a
|
|
|
|
mount /dev/${disk}a /a
|
|
|
|
cd /a
|
|
|
|
echo 'Rewind tape'
|
1994-05-27 12:39:00 +04:00
|
|
|
mt -f /dev/${tape} rew
|
1993-10-12 06:22:19 +03:00
|
|
|
echo 'Restore the dump image of the root'
|
1994-05-27 12:39:00 +04:00
|
|
|
restore rsf 2 /dev/${tape}
|
1993-10-12 06:22:19 +03:00
|
|
|
cd /
|
|
|
|
sync
|
1994-05-27 12:39:00 +04:00
|
|
|
umount /a
|
1993-10-12 06:22:19 +03:00
|
|
|
sync
|
|
|
|
fsck /dev/r${disk}a
|
|
|
|
echo 'Root filesystem extracted'
|
|
|
|
EOF
|
1994-05-27 12:39:00 +04:00
|
|
|
|
|
|
|
# make xtr script executable
|
1993-10-12 06:22:19 +03:00
|
|
|
chmod +x xtr
|
1994-05-27 12:39:00 +04:00
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
sync
|