fix miniroot command and dump new partition for /nbsd
[unix-history] / usr / src / sys / vax / dist / maketape
index eca3344..df341e0 100644 (file)
@@ -1,44 +1,82 @@
-#! /bin/sh
-#      @(#)maketape    4.13    %G%
+#!/bin/sh
 #
 #
-miniroot=hp0g
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)maketape    4.26 (Berkeley) %G%
+#
+#      maketape [ 6250 | 1600 [ tapename [ remotetapemachine ] ] ]
+miniroot=hp0d
+tape=/dev/rmt12
+type=6250
+if [ $# -gt 0 ]; then type=$1; fi
+if [ $# -gt 1 ]; then tape=$2; fi
+tartape=$tape
+if [ $# -gt 2 ]; then remote=$3; tartape='-'; fi
 #
 trap "rm -f /tmp/tape.$$; exit" 0 1 2 3 13 15
 #
 trap "rm -f /tmp/tape.$$; exit" 0 1 2 3 13 15
-mt rew
+$remote mt -t ${tape} rew
 date
 date
-umount /dev/hp2g /dev/hp2h
+umount /dev/hp2g
 umount /dev/hp2a
 umount /dev/hp2a
-mount -r /dev/hp2a /nbsd
-mount -r /dev/hp2g /nbsd/usr
-mount -r /dev/hp2h /nbsd/a
+mount -r /dev/hp2a /c/nbsd
+mount -r /dev/hp2g /c/nbsd/usr
 cd /nbsd/tp
 tp cmf /tmp/tape.$$ boot copy format
 cd /nbsd/sys/mdec
 echo "Build 1st level boot block file"
 cat tsboot htboot tmboot mtboot utboot noboot noboot /tmp/tape.$$ | \
 cd /nbsd/tp
 tp cmf /tmp/tape.$$ boot copy format
 cd /nbsd/sys/mdec
 echo "Build 1st level boot block file"
 cat tsboot htboot tmboot mtboot utboot noboot noboot /tmp/tape.$$ | \
-       dd of=/dev/rmt12 bs=512 conv=sync
+       $remote dd of=${tape} obs=512 conv=sync
 cd /nbsd
 sync
 echo "Add dump of mini-root file system"
 cd /nbsd
 sync
 echo "Add dump of mini-root file system"
-dd if=/dev/r${miniroot} of=/dev/rmt12 bs=20b count=205 conv=sync
+eval dd if=/dev/r${miniroot} count=205 bs=20b conv=sync ${remote+'|'} \
+       ${remote-"of=$tape"} ${remote+'/usr/local/20b ">" $tape'}
 echo "Add full dump of real file system"
 echo "Add full dump of real file system"
-/etc/dump 0uf /dev/rmt12 /nbsd
-echo "Add tar image of system sources"
-cd /nbsd/a/sys; tar cf /dev/rmt12 .
+/etc/${remote+r}dump 0uf $remote${remote+:}${tape} /c/nbsd
 echo "Add tar image of /usr"
 echo "Add tar image of /usr"
-cd /nbsd/usr; tar cf /dev/rmt12 adm bin dict doc games \
+cd /nbsd/usr; eval tar cf ${tartape} adm bin dict doc games \
        guest hosts include lib local man mdec msgs new \
        guest hosts include lib local man mdec msgs new \
-       preserve pub spool tmp ucb
-echo "Add varian fonts"
-cd /usr/lib/vfont; tar cFFf /dev/rmt12 .
-echo "Done, rewinding first tape"
-mt rew
-echo "Mount second tape and hit return when ready"; read x
+       preserve pub spool tmp ucb \
+               ${remote+'| $remote /usr/local/20b ">" $tape'}
+if [ ${type} != '6250' ]
+then
+       echo "Done, rewinding first tape"
+       $remote mt -t ${tape} rew &
+       echo "Mount second tape and hit return when ready"
+       echo "(or type name of next tape drive)"
+       read x
+       if [ "$x" != "" ]
+       then    tape=$x
+       fi
+fi
+echo "Add tar image of system sources"
+cd /nbsd/sys; eval tar cf ${tartape} . \
+       ${remote+'| $remote /usr/local/20b ">" $tape'}
 echo "Add user source code"
 echo "Add user source code"
-cd /nbsd/usr/src; tar cFFf /dev/rmt12 .
+cd /nbsd/usr/src; eval tar cf ${tartape} Makefile bin etc games \
+       include lib local old ucb undoc usr.bin usr.lib \
+       ${remote+'| $remote /usr/local/20b ">" $tape'}
+echo "Add varian fonts"
+cd /usr/lib/vfont; eval tar cf ${tartape} . \
+       ${remote+'| $remote /usr/local/20b ">" $tape'}
+if [ ${type} != '6250' ]
+then
+       echo "Done, rewinding second tape"
+       $remote mt -t ${tape} rew &
+       echo "Mount third tape and hit return when ready"
+       echo "(or type name of next tape drive)"
+       read x
+       if [ "$x" != "" ]
+       then    tape=$x
+       fi
+fi
 echo "Add user contributed software"
 echo "Add user contributed software"
-cd /nbsd/a/new; tar cFFf /dev/rmt12 .
+cd /nbsd/usr/src/new; eval tar cf ${tartape} . \
+       ${remote+'| $remote /usr/local/20b ">" $tape'}
 echo "Add ingres source"
 echo "Add ingres source"
-cd /nbsd/usr/ingres; tar cFFf /dev/rmt12 .
-echo "Done, rewinding second tape"
-mt rew
+cd /nbsd/usr/ingres; eval tar cf ${tartape} . \
+       ${remote+'| $remote /usr/local/20b ">" $tape'}
+echo "Done, rewinding tape"
+$remote mt -t ${tape} rew &