mirror of
https://github.com/DoctorWkt/unix-jun72.git
synced 2026-01-13 15:27:49 +00:00
12 lines
236 B
Bash
Executable File
12 lines
236 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# build a tape for simh containing the kernel sources
|
|
# requires conv2.c to be built
|
|
|
|
UNIXDIR=~/work/simh/unix-v7-4/run
|
|
|
|
tools/rebuild
|
|
(cd rebuilt; gtar -O -cf ../u.tar u?.s)
|
|
tools/conv2 -o tape.tm u.tar
|
|
cp tape.tm $UNIXDIR
|