+ if (pGpt->PartTbl[0].StartLBA != 2048)\r
+ {\r
+ Log("Part1 not match %llu", pGpt->PartTbl[0].StartLBA);\r
+ return FALSE;\r
+ }\r
+\r
+ PartSectorCount = VENTOY_EFI_PART_SIZE / 512;\r
+\r
+ if (pGpt->PartTbl[1].StartLBA != pGpt->PartTbl[0].LastLBA + 1 ||\r
+ (UINT32)(pGpt->PartTbl[1].LastLBA + 1 - pGpt->PartTbl[1].StartLBA) != PartSectorCount)\r
+ {\r
+ Log("Part2 not match [%llu %llu] [%llu %llu]",\r
+ pGpt->PartTbl[0].StartLBA, pGpt->PartTbl[0].LastLBA,\r
+ pGpt->PartTbl[1].StartLBA, pGpt->PartTbl[1].LastLBA);\r
+ return FALSE;\r
+ }\r
+\r