|
|
|
@ -559,6 +559,8 @@ int Xorriso_genisofs_count_args(struct XorrisO *xorriso, int argc, char **argv,
|
|
|
|
|
"-hppa-bootloader", "-hppa-ramdisk", "-mips-boot", "-mipsel-boot",
|
|
|
|
|
"-jigdo-jigdo", "-jigdo-template", "-jigdo-min-file-size",
|
|
|
|
|
"-jigdo-force-md5", "-jigdo-exclude", "-jigdo-map", "-md5-list",
|
|
|
|
|
"-jigdo-template-compress",
|
|
|
|
|
"-checksum_algorithm_iso", "-checksum_algorithm_template",
|
|
|
|
|
"--stdio_sync", "--quoted_path_list", "--efi-boot", "--embedded-boot",
|
|
|
|
|
"-isohybrid-mbr", "-e", "-partition_offset", "-partition_hd_cyl",
|
|
|
|
|
"-partition_sec_hd",
|
|
|
|
@ -615,6 +617,7 @@ int Xorriso_genisofs_ignore(struct XorrisO *xorriso, char *whom,
|
|
|
|
|
static char ignored_arg1_options[][41]= {
|
|
|
|
|
"-check-session", "-hide-hfs", "-hide-hfs-list", "-root",
|
|
|
|
|
"-old-root", "-table-name", "-volset-seqno", "-volset-size",
|
|
|
|
|
"-checksum_algorithm_iso", "-checksum_algorithm_template",
|
|
|
|
|
""
|
|
|
|
|
};
|
|
|
|
|
int k, idx_offset= 0;
|
|
|
|
@ -720,6 +723,8 @@ int Xorriso_genisofs_help(struct XorrisO *xorriso, int flag)
|
|
|
|
|
" -jigdo-map PATTERN1=PATTERN2",
|
|
|
|
|
" Pattern(s) to map paths (e.g. Debian=/mirror/debian)",
|
|
|
|
|
" -md5-list FILE File containing MD5 sums of the files that should be checked",
|
|
|
|
|
" -jigdo-template-compress ALGORITHM",
|
|
|
|
|
" Choose to use gzip or bzip2 compression for template data; default is gzip",
|
|
|
|
|
" -b FILE, -eltorito-boot FILE",
|
|
|
|
|
" Set El Torito boot image name",
|
|
|
|
|
" -eltorito-alt-boot Start specifying alternative El Torito boot parameters",
|
|
|
|
@ -1366,6 +1371,7 @@ is_unknown_option_2:;
|
|
|
|
|
strcmp(argv[i], "-jigdo-exclude") == 0 ||
|
|
|
|
|
strcmp(argv[i], "-jigdo-force-md5") == 0 ||
|
|
|
|
|
strcmp(argv[i], "-jigdo-map") == 0 ||
|
|
|
|
|
strcmp(argv[i], "-jigdo-template-compress") == 0 ||
|
|
|
|
|
strcmp(argv[i], "-md5-list") == 0) {
|
|
|
|
|
i++;
|
|
|
|
|
ret= Xorriso_option_jigdo(xorriso, argv[i - 1], argv[i], 0);
|
|
|
|
|