ShellPkg/DP: Update the error message info
Make the error message clearer if fail to get ACPI/FPDT table. Cc: Liming Gao <liming.gao@intel.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
@ -258,6 +258,7 @@ GetBootPerformanceTable (
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (EFI_ERROR(Status) || AcpiTable == NULL) {
|
if (EFI_ERROR(Status) || AcpiTable == NULL) {
|
||||||
|
ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_GET_ACPI_TABLE_FAIL), mDpHiiHandle);
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -266,6 +267,7 @@ GetBootPerformanceTable (
|
|||||||
EFI_ACPI_5_0_FIRMWARE_PERFORMANCE_DATA_TABLE_SIGNATURE
|
EFI_ACPI_5_0_FIRMWARE_PERFORMANCE_DATA_TABLE_SIGNATURE
|
||||||
);
|
);
|
||||||
if (FirmwarePerformanceTable == NULL) {
|
if (FirmwarePerformanceTable == NULL) {
|
||||||
|
ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_GET_ACPI_FPDT_FAIL), mDpHiiHandle);
|
||||||
return EFI_NOT_FOUND;
|
return EFI_NOT_FOUND;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -739,7 +741,6 @@ RunDp (
|
|||||||
//
|
//
|
||||||
Status = GetBootPerformanceTable ();
|
Status = GetBootPerformanceTable ();
|
||||||
if (EFI_ERROR(Status)) {
|
if (EFI_ERROR(Status)) {
|
||||||
ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_DP_GET_BOOT_PERFORMANCE_TABLE_FAIL), mDpHiiHandle);
|
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,7 +90,8 @@
|
|||||||
#string STR_DP_INCOMPLETE #language en-US " I "
|
#string STR_DP_INCOMPLETE #language en-US " I "
|
||||||
#string STR_DP_COMPLETE #language en-US " "
|
#string STR_DP_COMPLETE #language en-US " "
|
||||||
#string STR_ALIT_UNKNOWN #language en-US "Unknown"
|
#string STR_ALIT_UNKNOWN #language en-US "Unknown"
|
||||||
#string STR_DP_GET_BOOT_PERFORMANCE_TABLE_FAIL #language en-US "Fail to get boot performance table\n"
|
#string STR_DP_GET_ACPI_TABLE_FAIL #language en-US "Fail to get ACPI Table\n"
|
||||||
|
#string STR_DP_GET_ACPI_FPDT_FAIL #language en-US "Fail to get Firmware Performance Data Table (FPDT) in ACPI Table\n"
|
||||||
|
|
||||||
#string STR_GET_HELP_DP #language en-US ""
|
#string STR_GET_HELP_DP #language en-US ""
|
||||||
".TH dp 0 "Display performance metrics"\r\n"
|
".TH dp 0 "Display performance metrics"\r\n"
|
||||||
|
Reference in New Issue
Block a user