Expand PMF_FN_* macros.
[netbsd-mini2440.git] / distrib / sun2 / MakeInstTape
blobc366afe18f3f0ba7676b0c4b4e0152ca4ba32ff2
1 #!/bin/sh
3 # Here is a generic script that makes a Sun2 boot tape using
4 # the files in ../binary
6 # $NetBSD$
8 T=${1:-/dev/nrst0}
10 # Remember, skip "etc" for an upgrade.
11 sets="etc base comp games man misc text"
13 # Entertain...
14 set -x
16 # Make sure we start at the beginning.
17 mt -f $T rewind
19 # Write each *.tgz file into a tape segment.
20 for f in $sets
22 dd if=../../binary/sets/${f}.tgz of=$T obs=8k conv=sync
23 done
25 # Done!
26 mt -f $T rewind