diff options
author | Lei Wen <leiwen@marvell.com> | 2011-09-07 18:11:19 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-06 20:42:47 +0200 |
commit | 6eecc0307927fee1ff70151980b3a8c02ffeb947 (patch) | |
tree | 993d7a66609a4efe874c0acec18cae749a39f97d /disk/part_efi.h | |
parent | 9f8765805400db65b44c3edb68a638f17dd8399d (diff) | |
download | u-boot-imx-6eecc0307927fee1ff70151980b3a8c02ffeb947.zip u-boot-imx-6eecc0307927fee1ff70151980b3a8c02ffeb947.tar.gz u-boot-imx-6eecc0307927fee1ff70151980b3a8c02ffeb947.tar.bz2 |
part: show efi partition name when print out partition info
Previous output:
Marvell>> mmc part
Partition Map for MMC device 1 -- Partition Type: EFI
Part Start LBA End LBA
gpt1 0x8C00 0xCBFF
gpt2 0xCC00 0x57BFF
gpt3 0x57C00 0xA2BFF
gpt4 0xA2C00 0xECBFDE
With the patch, the output becomes:
Marvell>> mmc part
Partition Map for MMC device 1 -- Partition Type: EFI
Part Name Start LBA End LBA
1 ramdisk 0x00008C00 0x0000CBFF
2 system 0x0000CC00 0x00057BFF
3 userdata 0x00057C00 0x000A2BFF
4 remaining 0x000A2C00 0x00ECBFDE
Signed-off-by: Lei Wen <leiwen@marvell.com>
Diffstat (limited to 'disk/part_efi.h')
-rw-r--r-- | disk/part_efi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/disk/part_efi.h b/disk/part_efi.h index 6bbb06b..5903e7c 100644 --- a/disk/part_efi.h +++ b/disk/part_efi.h @@ -117,13 +117,14 @@ typedef struct _gpt_entry_attributes { unsigned long long type_guid_specific:16; } __attribute__ ((packed)) gpt_entry_attributes; +#define PARTNAME_SZ (72 / sizeof(efi_char16_t)) typedef struct _gpt_entry { efi_guid_t partition_type_guid; efi_guid_t unique_partition_guid; unsigned char starting_lba[8]; unsigned char ending_lba[8]; gpt_entry_attributes attributes; - efi_char16_t partition_name[72 / sizeof(efi_char16_t)]; + efi_char16_t partition_name[PARTNAME_SZ]; } __attribute__ ((packed)) gpt_entry; |