ArmVirtPkg/PlatformBootManagerLib: add missing report status code call

Consumers of status code reports may rely on a status code to be
reported when the ReadyToBoot event is signalled. For instance,
FirmwarePerformanceDxe will fail to install the FPDT ACPI table
in this case. So add the missing call.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
Ard Biesheuvel 2018-05-22 15:49:16 +02:00
parent 0a0566d5ed
commit 97399f2d6f
2 changed files with 5 additions and 0 deletions

View File

@ -53,6 +53,7 @@
PrintLib
QemuBootOrderLib
QemuFwCfgLib
ReportStatusCodeLib
UefiBootManagerLib
UefiBootServicesTableLib
UefiLib

View File

@ -20,6 +20,7 @@
#include <Guid/FileSystemVolumeLabelInfo.h>
#include <Library/PrintLib.h>
#include <Library/QemuFwCfgLib.h>
#include <Library/ReportStatusCodeLib.h>
#include <Protocol/DevicePath.h>
#include <Protocol/LoadedImage.h>
#include <Protocol/SimpleFileSystem.h>
@ -1072,6 +1073,9 @@ TryRunningQemuKernel (
//
EfiSignalEventReadyToBoot();
REPORT_STATUS_CODE (EFI_PROGRESS_CODE,
(EFI_SOFTWARE_DXE_BS_DRIVER | EFI_SW_DXE_BS_PC_READY_TO_BOOT_EVENT));
//
// Start the image.
//