mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-24 18:25:10 +00:00
Make cgpt_add error messages a little more verbose
When the cgpt utility complaints about parameter errors, it is impossible to tell what exactly went wrong. This change consolidates error definitions and adds a function to convert integer error values into text messages. BRANCH=none BUG=none TEST=manual . emerge-link vbooot_reference . copy generated `cgpt' to a Link device . run command with wrong arguments with respect to the existing GPT: localhost var # ./cgpt add -i 3 -b 3985408 -s 1757184 -t rootfs -l ROOT-A /dev/sda ERROR: cgpt add: Starting LBA overlaps ERROR: cgpt add: -i 3 -l ROOT-A -b 3985408 -s 1757184 -t 3CB8E202-3B7E-47DD-8A3C-7FF2A13CFCEC . on the host, in the chroot in src/platform/vboot_reference run $ make && make runtests observe all tests succeed Change-Id: Ibd23ca0430a875f70524adc99e0509b26ae699b2 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/34003 Reviewed-by: Randall Spangler <rspangler@chromium.org>
This commit is contained in:
@@ -16,6 +16,11 @@ enum {
|
||||
GPT_ERROR_INVALID_SECTOR_SIZE,
|
||||
GPT_ERROR_INVALID_SECTOR_NUMBER,
|
||||
GPT_ERROR_INVALID_UPDATE_TYPE,
|
||||
GPT_ERROR_CRC_CORRUPTED,
|
||||
GPT_ERROR_OUT_OF_REGION,
|
||||
GPT_ERROR_START_LBA_OVERLAP,
|
||||
GPT_ERROR_END_LBA_OVERLAP,
|
||||
GPT_ERROR_DUP_GUID,
|
||||
};
|
||||
|
||||
/* Bit masks for GptData.modified field. */
|
||||
|
||||
Reference in New Issue
Block a user