New -as mkisofs option -max-iso9660-filenames

This commit is contained in:
Thomas Schmitt 2011-02-22 14:31:23 +00:00
parent df52dd1333
commit aed7a2cf05
2 changed files with 5 additions and 3 deletions

View File

@ -620,7 +620,7 @@ int Xorriso_genisofs_ignore(struct XorrisO *xorriso, char *whom,
"-allow-leading-dots", "-ldots", "-allow-multidot",
"-cache-inodes", "-no-cache-inodes", "-check-oldnames", "-D",
"-disable-deep-relocation",
"-L", "-max-iso9660-filenames", "-nobak",
"-L", "-nobak",
"-no-bak", "-force-rr", "-relaxed-filenames", "-T",
"-no-iso-translate",
""
@ -694,6 +694,7 @@ int Xorriso_genisofs_help(struct XorrisO *xorriso, int flag)
" -allow-lowercase Allow lower case characters in addition to the current character set (violates ISO9660)",
" -d, -omit-period Omit trailing periods from filenames (violates ISO9660)",
" -l, -full-iso9660-filenames Allow full 31 character filenames for ISO9660 names",
" -max-iso9660-filenames Allow 37 character filenames for ISO9660 names (violates ISO9660)",
" -N, -omit-version-number Omit version number from ISO9660 filename (violates ISO9660)",
" -o FILE, -output FILE Set output file name",
" -m GLOBFILE, -exclude GLOBFILE",
@ -1408,7 +1409,8 @@ not_enough_args:;
strcmp(argv[i], "-omit-version-number") == 0) {
Xorriso_relax_compliance(xorriso, "omit_version", 0);
} else if(strcmp(argv[i], "-l") == 0 ||
strcmp(argv[i], "-full-iso9660-filenames") == 0) {
strcmp(argv[i], "-full-iso9660-filenames") == 0 ||
strcmp(argv[i], "-max-iso9660-filenames") == 0) {
Xorriso_relax_compliance(xorriso, "long_names", 0);
} else if(strcmp(argv[i], "-d") == 0 ||
strcmp(argv[i], "-omit-period") == 0) {

View File

@ -1 +1 @@
#define Xorriso_timestamP "2011.02.22.123730"
#define Xorriso_timestamP "2011.02.22.143131"