Provisory new image generation extension isoburn_igopt_fat
This commit is contained in:
@@ -472,6 +472,7 @@ int isoburn_prepare_disc_aux(struct burn_drive *in_d, struct burn_drive *out_d,
|
||||
iso_write_opts_set_rockridge(wopts, opts->rockridge);
|
||||
iso_write_opts_set_joliet(wopts, opts->joliet);
|
||||
iso_write_opts_set_hfsplus(wopts, opts->hfsplus);
|
||||
iso_write_opts_set_fat(wopts, opts->fat);
|
||||
iso_write_opts_set_iso1999(wopts, opts->iso1999);
|
||||
iso_write_opts_set_hardlinks(wopts, opts->hardlinks);
|
||||
if(opts->hardlinks)
|
||||
@@ -1125,7 +1126,8 @@ int isoburn_igopt_set_extensions(struct isoburn_imgen_opts *o, int ext)
|
||||
o->no_emul_toc= !!(ext & 512);
|
||||
o->will_cancel= !!(ext & 1024);
|
||||
o->old_empty= !!(ext & 2048);
|
||||
o->hfsplus= !!(ext&4096);
|
||||
o->hfsplus= !!(ext & 4096);
|
||||
o->fat= !!(ext & 8192);
|
||||
return(1);
|
||||
}
|
||||
|
||||
@@ -1136,7 +1138,8 @@ int isoburn_igopt_get_extensions(struct isoburn_imgen_opts *o, int *ext)
|
||||
((!!o->hardlinks) << 3) | ((!!o->aaip) << 5) |
|
||||
((!!o->session_md5) << 6) | ((o->file_md5 & 3) << 7) |
|
||||
((!!o->no_emul_toc) << 9) | ((o->will_cancel) << 10) |
|
||||
((!!o->old_empty) << 11) | ((!!o->hfsplus) << 12);
|
||||
((!!o->old_empty) << 11) | ((!!o->hfsplus) << 12) |
|
||||
((!!o->fat) << 13);
|
||||
return(1);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user