commit | 4e9bd0623775768be4e1e80ee32a7e42b8c9d3c5 | [log] [tgz] |
---|---|---|
author | Gary Bisson <gary.bisson@boundarydevices.com> | Tue Jan 26 14:56:23 2021 +0100 |
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | Fri Jan 29 20:22:40 2021 +0100 |
tree | 292b79caba65c318ed85f5b6589bcc684cd3ebb2 | |
parent | 82d01f04facef1276cede067efd02d2a731ffe83 [diff] |
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>
diff --git a/disk/part_efi.c b/disk/part_efi.c index 2f92266..7a24e33 100644 --- a/disk/part_efi.c +++ b/disk/part_efi.c
@@ -867,6 +867,9 @@ return 1; } + /* Update the partition table entries*/ + part_init(dev_desc); + return 0; } #endif