30 lines
578 B
Bash
Executable File
30 lines
578 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Here is a generic script that makes a Sun3 boot tape using
|
|
# the files in this directory.
|
|
#
|
|
# $NetBSD: MakeBootTape,v 1.3 1997/12/20 02:52:49 gwr Exp $
|
|
|
|
T=${1:-/dev/nrst0}
|
|
|
|
# Entertain...
|
|
set -x
|
|
|
|
# Make sure we start at the beginning.
|
|
mt -f $T rewind
|
|
|
|
# Segment 1 is the tapeboot program.
|
|
dd if=tapeboot of=$T obs=8k conv=sync
|
|
|
|
# Segment 2 is the ramdisk kernel.
|
|
gzip -d -c ../../binary/kernel/netbsd-rd.gz |
|
|
dd of=$T obs=8k conv=sync
|
|
|
|
# Segment 3 is the miniroot image, unzipped!
|
|
gzip -d -c ../miniroot/miniroot.gz |
|
|
dd of=$T obs=8k
|
|
|
|
# Done!
|
|
mt -f $T rewind
|
|
|