disk: part_efi: update partition table entries after write

Fixes fastboot issues when switching from mbr to gpt partition tables.

Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
Gary Bisson 2021-01-26 14:56:23 +01:00 committed by Heinrich Schuchardt
parent 82d01f04fa
commit 4e9bd06237
1 changed files with 3 additions and 0 deletions

View File

@ -867,6 +867,9 @@ int write_mbr_and_gpt_partitions(struct blk_desc *dev_desc, void *buf)
return 1;
}
/* Update the partition table entries*/
part_init(dev_desc);
return 0;
}
#endif