Displaying 2 results from an estimated 2 matches for "b66a7e2".
Did you mean:
b6687f2
2018 Oct 28
6
[PATCH nbdkit 0/4] Add floppy plugin.
Add nbdkit-floppy-plugin, “inspired” by qemu's VVFAT driver, but
without the ability to handle writes.
The implementation is pretty complete, supporting FAT32, LFNs, volume
labels, timestamps, etc, and it passes both ‘make check’ and ‘make
check-valgrind’.
Usage is simple; to serve the current directory:
$ nbdkit floppy .
Then using guestfish (or any NBD client):
$ guestfish --ro
2018 Oct 28
0
[PATCH nbdkit 4/4] Add floppy plugin.
...++++++++++
plugins/floppy/virtual-floppy.h | 233 +++++++
plugins/iso/nbdkit-iso-plugin.pod | 1 +
tests/Makefile.am | 6 +
tests/test-floppy.sh | 67 ++
10 files changed, 2082 insertions(+)
diff --git a/configure.ac b/configure.ac
index b66a7e2..b872fd6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -599,6 +599,7 @@ non_lang_plugins="\
example4 \
ext2 \
file \
+ floppy \
guestfs \
gzip \
iso \
@@ -657,6 +658,7 @@ AC_CONFIG_FILES([Makefile
plugins/example4...