#!/bin/sh # # Here is a generic script that makes a Sun2 boot tape using # the files in ../binary # # $NetBSD: MakeInstTape,v 1.1.104.1 2019/11/17 07:04:38 martin Exp $ T=${1:-/dev/nrst0} # Remember, skip "etc" for an upgrade. sets="etc base comp games man misc rescue text" # Entertain... set -x # Make sure we start at the beginning. mt -f $T rewind # Write each *.tgz file into a tape segment. for f in $sets do dd if=../../binary/sets/${f}.tgz of=$T obs=8k conv=sync done # Done! mt -f $T rewind