diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /distrib/vax/rx50 |
initial import of NetBSD tree
Diffstat (limited to 'distrib/vax/rx50')
-rw-r--r-- | distrib/vax/rx50/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/distrib/vax/rx50/Makefile b/distrib/vax/rx50/Makefile new file mode 100644 index 00000000000..bad9e556713 --- /dev/null +++ b/distrib/vax/rx50/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 1995/10/01 21:22:42 ragge Exp $ +# +# Create RX50 floppies. + +.include "../Makefile.inc" + +all: + cp ../inst/bootroot-${REV}.fs rx50-bootdisk-${REV} + dd if=../inst/miniroot-${REV}.fs of=rx50-copy1-${REV} bs=512 count=800 + dd if=../inst/miniroot-${REV}.fs of=rx50-copy2-${REV} \ + bs=512 skip=800 count=800 + dd if=../inst/miniroot-${REV}.fs of=rx50-copy3-${REV} \ + bs=512 skip=1600 count=800 + dd if=../inst/miniroot-${REV}.fs of=rx50-copy4-${REV} \ + bs=512 skip=2400 count=800 + dd if=../inst/miniroot-${REV}.fs of=rx50-copy5-${REV} \ + bs=512 skip=3200 count=800 + dd if=../inst/miniroot-${REV}.fs of=rx50-copy6-${REV} \ + bs=512 skip=4000 count=800 + +.include <bsd.obj.mk> +.include <bsd.subdir.mk> |