This isn't a syslinux issue, but I don't see a mailing list setup for
the zisofs tools. Forgive me if this is sent to the wrong place.
The sloppy option does not work as documented in the mkzftree man page.
Here is the patch I used to enable it.
--- zisofs-tools-1.0.7/mkzftree.c.sloppy 2007-05-15
08:42:20.000000000 -0400
+++ zisofs-tools-1.0.7/mkzftree.c 2007-05-15 08:47:08.000000000
-0400
@@ -95,7 +95,7 @@
const char *program;
/* Long options */
-#define OPTSTRING "fz:up:xXC:lLFvqV:hw"
+#define OPTSTRING "fz:up:xXC:lLFvqV:hws"
#ifdef HAVE_GETOPT_LONG
const struct option long_options[] = {
{ "force", 0, 0, 'f' },
@@ -113,6 +113,7 @@
{ "verbosity", 1, 0, 'V' },
{ "help", 0, 0, 'h' },
{ "version", 0, 0, 'w' },
+ { "sloppy", 0, 0, 's' },
{ 0, 0, 0, 0 }
};
#define LO(X) X