1
0
mirror of https://github.com/ventoy/Ventoy synced 2024-07-03 08:28:54 +00:00

Fix the VHD(x) boot issue introduced in 1.0.87.

This commit is contained in:
longpanda 2023-01-10 09:37:05 +08:00
parent d9182dbfa4
commit 1300f7f4f1

View File

@ -262,6 +262,10 @@ static int ventoy_vhd_patch_disk(const char *vhdpath, ventoy_patch_vhd *patch1,
}
else
{
if (offset == 0)
{
offset = gpt->MBR.PartTbl[partIndex].StartSectorId;
}
offset *= 512;
debug("MBR disk signature: %02x%02x%02x%02x Part(%d) offset:%llu\n",
gpt->MBR.BootCode[0x1b8 + 0], gpt->MBR.BootCode[0x1b8 + 1],