New -as mkisofs option --old-empty
This commit is contained in:
parent
b4be60ecb3
commit
b8788e5f9e
@ -533,7 +533,7 @@ int Xorriso_genisofs_count_args(struct XorrisO *xorriso, int argc, char **argv,
|
|||||||
"-no-mac-files", "-chrp-boot",
|
"-no-mac-files", "-chrp-boot",
|
||||||
"--hardlinks", "--acl", "--xattr", "--md5", "--for_backup",
|
"--hardlinks", "--acl", "--xattr", "--md5", "--for_backup",
|
||||||
"--protective-msdos-label", "--boot-catalog-hide", "--no-emul-toc",
|
"--protective-msdos-label", "--boot-catalog-hide", "--no-emul-toc",
|
||||||
"--emul-toc", "-disallow_dir_id_ext",
|
"--emul-toc", "-disallow_dir_id_ext", "--old-empty",
|
||||||
""
|
""
|
||||||
};
|
};
|
||||||
static char arg1_options[][41]= {
|
static char arg1_options[][41]= {
|
||||||
@ -773,6 +773,7 @@ int Xorriso_genisofs_help(struct XorrisO *xorriso, int flag)
|
|||||||
" --stdio_sync on|off|number Control forced output to disk files",
|
" --stdio_sync on|off|number Control forced output to disk files",
|
||||||
" --no-emul-toc Save 64 kB size on random access output files",
|
" --no-emul-toc Save 64 kB size on random access output files",
|
||||||
" --emul-toc Multi-session history on such output files",
|
" --emul-toc Multi-session history on such output files",
|
||||||
|
" --old-empty Use old style block addresses for empty files",
|
||||||
" -z, -transparent-compression",
|
" -z, -transparent-compression",
|
||||||
" Enable transparent compression of files",
|
" Enable transparent compression of files",
|
||||||
" -v, -verbose Verbose",
|
" -v, -verbose Verbose",
|
||||||
@ -1454,6 +1455,9 @@ not_enough_args:;
|
|||||||
strcmp(argv[i], "--no-emul-toc")==0) {
|
strcmp(argv[i], "--no-emul-toc")==0) {
|
||||||
/* was already handled in first argument scan */;
|
/* was already handled in first argument scan */;
|
||||||
|
|
||||||
|
} else if(strcmp(argv[i], "--old-empty")==0) {
|
||||||
|
xorriso->do_old_empty= 1;
|
||||||
|
|
||||||
} else if(strcmp(argv[i], "-disallow_dir_id_ext")==0) {
|
} else if(strcmp(argv[i], "-disallow_dir_id_ext")==0) {
|
||||||
/* was already handled in first argument scan */;
|
/* was already handled in first argument scan */;
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2011.01.26.184140"
|
#define Xorriso_timestamP "2011.01.26.210359"
|
||||||
|
Loading…
Reference in New Issue
Block a user