From aadf67c36e0200e6ddd821448f6812e9d4a16f9b Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 25 Oct 2019 18:22:42 +0100 Subject: [PATCH] Convert to nbdkit data disk. --- .gitignore | 1 + Makefile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 5903843..2f4422f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *~ +pyrit.data pyrit.img diff --git a/Makefile b/Makefile index c8fd2ee..d1202da 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,9 @@ all: pyrit.img pyrit.img: pyrit.asm nasm -f bin -o $@ $< +pyrit.data: pyrit.img + $(HOME)/d/nbdkit/plugins/data/disk2data.pl $< > $@ + clean: rm -f *~ pyrit.img -- 1.8.3.1