diff options
| author | Gary Bisson <[email protected]> | 2021-01-28 09:10:07 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-02-01 16:32:06 -0500 |
| commit | f14c5ee5ab8bfac0fdbae1143170d8390867479d (patch) | |
| tree | d34229698eaf0a4504d207defd6c0d429cbe78c1 /disk/part_dos.c | |
| parent | 7a01882eb37e7504e2450f474d0cc8db60ed26c2 (diff) | |
disk: part_dos: update partition table entries after write
Fixes issues when switching from GPT to MBR partition tables.
Signed-off-by: Gary Bisson <[email protected]>
Acked-by: Marek Szyprowski <[email protected]>
Diffstat (limited to 'disk/part_dos.c')
| -rw-r--r-- | disk/part_dos.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/disk/part_dos.c b/disk/part_dos.c index f431925745c..60addc6e00d 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -423,6 +423,9 @@ int write_mbr_partitions(struct blk_desc *dev, ext_part_sect = next_ebr; } + /* Update the partition table entries*/ + part_init(dev_desc); + return 0; } @@ -499,6 +502,9 @@ int write_mbr_sector(struct blk_desc *dev_desc, void *buf) return 1; } + /* Update the partition table entries*/ + part_init(dev_desc); + return 0; } |
