New -boot_image bootspec appended_gpt_with_gaps=

This commit is contained in:
2024-12-16 18:21:28 +01:00
parent 2049dfc996
commit 6deb2435ab
8 changed files with 179 additions and 78 deletions

View File

@ -3103,6 +3103,15 @@ int Xorriso_status(struct XorrisO *xorriso, char *filter, FILE *fp, int flag)
}
}
is_default= (xorriso->iso_mbr_part_flag & 2) == 0;
if(is_default) {
sprintf(line, "-boot_image any appended_gpt_with_gaps=off\n");
} else {
sprintf(line, "-boot_image any appended_gpt_with_gaps=on\n");
}
if(!(is_default && no_defaults))
Xorriso_status_result(xorriso, filter, fp, flag & 2);
is_default= (xorriso->part_like_isohybrid == 0);
sprintf(line, "-boot_image any part_like_isohybrid=%s\n",
xorriso->part_like_isohybrid ? "on" : "off");