summaryrefslogtreecommitdiff
path: root/disk
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-01-30 22:49:17 +0300
committerTom Rini <trini@konsulko.com>2021-01-30 22:49:17 +0300
commit76404f86a24aa28efc26a296bf6ab9d697c60b9f (patch)
tree94d44ddf983d8b5b9cdeeae6df5c9d7cff1142ab /disk
parent472a716b8fdfd88a27cb675e4ea8e12cb4f79fc3 (diff)
parent18dd984c56b339be74e390df80fd3dc21b7a9b58 (diff)
downloadu-boot-76404f86a24aa28efc26a296bf6ab9d697c60b9f.tar.xz
Merge tag 'efi-2021-04-rc1-4' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2021-04-rc1-4 Bug fixes: * re-read the partition table after writing GPT * fix a problem booting ARMv7 boards with PSCI without UEFI * make aarch64 UEFI test programs compatible with GRUB linux command * correct the alignment check in the EFI_BLOCK_IO_PROTOCOL * check EFI_BLOCK_IO_PROTOCOL.Media->LastBlock in unit test
Diffstat (limited to 'disk')
-rw-r--r--disk/part_efi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/disk/part_efi.c b/disk/part_efi.c
index 2f922662e6..7a24e33d18 100644
--- a/disk/part_efi.c
+++ b/disk/part_efi.c
@@ -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