Small adjustments in mkisofs emulation
This commit is contained in:
parent
09e0b27d9e
commit
e71da74fbc
@ -723,10 +723,10 @@ int Xorriso_genisofs_help(struct XorrisO *xorriso, int flag)
|
||||
" -publisher PUB Set Volume publisher",
|
||||
" -A ID, -appid ID Set Application ID",
|
||||
" -sysid ID Set System ID",
|
||||
" -p PREP, -preparer PREP Set Volume preparer",
|
||||
" -abstract FILE Set Abstract filename",
|
||||
" -biblio FILE Set Bibliographic filename",
|
||||
" -copyright FILE Set Copyright filename",
|
||||
" -p PREP, -preparer PREP Set Volume preparer",
|
||||
" -jigdo-jigdo FILE Produce a jigdo .jigdo file as well as the .iso",
|
||||
" -jigdo-template FILE Produce a jigdo .template file as well as the .iso",
|
||||
" -jigdo-min-file-size SIZE Minimum size for a file to be listed in the jigdo file",
|
||||
@ -740,7 +740,7 @@ int Xorriso_genisofs_help(struct XorrisO *xorriso, int flag)
|
||||
" -checksum_algorithm_iso alg1,alg2,...",
|
||||
" Specify the checksum types desired for the output image (in .jigdo)",
|
||||
" -checksum_algorithm_template alg1,alg2,...",
|
||||
" Specify the checksum types desired for the output jigdo template"
|
||||
" Specify the checksum types desired for the output jigdo template",
|
||||
" -b FILE, -eltorito-boot FILE",
|
||||
" Set El Torito boot image name",
|
||||
" -eltorito-alt-boot Start specifying alternative El Torito boot parameters",
|
||||
@ -754,6 +754,7 @@ int Xorriso_genisofs_help(struct XorrisO *xorriso, int flag)
|
||||
" -no-emul-boot Boot image is 'no emulation' image",
|
||||
" -boot-info-table Patch boot image with info table",
|
||||
" -G FILE, -generic-boot FILE Set generic boot image name",
|
||||
" --embedded-boot FILE Alias of -G",
|
||||
" --protective-msdos-label Patch System Area by partition table",
|
||||
" -partition_offset LBA Make image mountable by first partition, too",
|
||||
" -partition_sec_hd NUMBER Define number of sectors per head",
|
||||
@ -1391,7 +1392,7 @@ not_enough_args:;
|
||||
} else if(strcmp(argv[i], "-U") == 0 ||
|
||||
strcmp(argv[i], "-untranslated-filenames") == 0) {
|
||||
Xorriso_relax_compliance(xorriso,
|
||||
"no_force_dots:long_paths:omit_version:full_ascii:lowercase", 0);
|
||||
"no_force_dots:long_paths:long_names:omit_version:full_ascii:lowercase", 0);
|
||||
} else if(strcmp(argv[i], "-untranslated_name_len") == 0) {
|
||||
if(i+1>=argc)
|
||||
goto not_enough_args;
|
||||
@ -1405,7 +1406,7 @@ not_enough_args:;
|
||||
Xorriso_relax_compliance(xorriso, "omit_version", 0);
|
||||
} else if(strcmp(argv[i], "-l") == 0 ||
|
||||
strcmp(argv[i], "-full-iso9660-filenames") == 0) {
|
||||
Xorriso_relax_compliance(xorriso, "long_paths", 0);
|
||||
Xorriso_relax_compliance(xorriso, "long_names", 0);
|
||||
} else if(strcmp(argv[i], "-d") == 0 ||
|
||||
strcmp(argv[i], "-omit-period") == 0) {
|
||||
Xorriso_relax_compliance(xorriso, "no_force_dots", 0);
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2011.02.14.090737"
|
||||
#define Xorriso_timestamP "2011.02.19.112243"
|
||||
|
Loading…
Reference in New Issue
Block a user