diff options
author | Tom Rini <trini@konsulko.com> | 2021-12-18 08:52:40 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-12-18 08:52:40 -0500 |
commit | e19c88e1ff3172ed17cd12d647f2d72a272bf447 (patch) | |
tree | e2540498952eb76ee04a6329201c5da4da38a075 /disk/part.c | |
parent | 0ebf465d343868bf1080d540ab64de39bb927a09 (diff) | |
parent | 2548e6b8fcaf923bdf43c24e89acc12c0e897053 (diff) | |
download | u-boot-WIP/18Dec2021-next.zip u-boot-WIP/18Dec2021-next.tar.gz u-boot-WIP/18Dec2021-next.tar.bz2 |
Merge branch 'next' of https://source.denx.de/u-boot/custodians/u-boot-marvell into nextWIP/18Dec2021-next
- Armada XP etc: Move to DM_I2C (Stefan)
- Some mvebu comphy + mox + fdt_support changes (Marek & Pali)
- mvebu: a38x: improve USB3 serdes configuration (Stefan Eichenberger)
- mvebu: Some maintainer updates (Pali)
- mvebu: Misc minor cleanup (Pali)
Diffstat (limited to 'disk/part.c')
-rw-r--r-- | disk/part.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/disk/part.c b/disk/part.c index fe1ebd4..e857a9f 100644 --- a/disk/part.c +++ b/disk/part.c @@ -296,8 +296,11 @@ static void print_part_header(const char *type, struct blk_desc *dev_desc) case IF_TYPE_VIRTIO: puts("VirtIO"); break; + case IF_TYPE_EFI_MEDIA: + puts("EFI"); + break; default: - puts ("UNKNOWN"); + puts("UNKNOWN"); break; } printf (" device %d -- Partition Type: %s\n\n", |