New iso_write_opts_set_system_area() option bits 16: GPT "Legacy BIOS bootable" and 17: GPT writable

This commit is contained in:
2021-05-25 21:10:28 +02:00
parent 75499bcda9
commit 1c4c04d4e2
3 changed files with 19 additions and 3 deletions

View File

@ -4207,7 +4207,7 @@ int iso_write_opts_set_system_area(IsoWriteOpts *opts, char data[32768],
opts->system_area_size = 32768;
}
if (!(flag & 4))
opts->system_area_options = options & 0xffff;
opts->system_area_options = options & 0x3ffff;
return ISO_SUCCESS;
}