diff options
author | Laszlo Ersek <lersek@redhat.com> | 2015-01-14 16:25:59 +0000 |
---|---|---|
committer | lersek <lersek@Edk2> | 2015-01-14 16:25:59 +0000 |
commit | ea444a3e42a61a9fbbb77401265e5d8b3bcba050 (patch) | |
tree | ad17689e5e8c62ff065550b3bd532ffe0557ca95 /OvmfPkg/Library/PlatformBdsLib/BdsPlatform.c | |
parent | 9253c14d4134da1bf3bb222fffa2b2d4880ab3cf (diff) | |
download | edk2-platforms-ea444a3e42a61a9fbbb77401265e5d8b3bcba050.tar.xz |
OvmfPkg: PlatformBdsLib: get front page timeout from QEMU
Put QemuBootOrderLib's GetFrontPageTimeoutFromQemu() to use, so that
OVMF's Platform BDS policy can consume QEMU's command line option
-boot menu=on,splash-time=N
RHBZ: https://bugzilla.redhat.com/show_bug.cgi?id=1170507
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16611 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OvmfPkg/Library/PlatformBdsLib/BdsPlatform.c')
-rw-r--r-- | OvmfPkg/Library/PlatformBdsLib/BdsPlatform.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/OvmfPkg/Library/PlatformBdsLib/BdsPlatform.c b/OvmfPkg/Library/PlatformBdsLib/BdsPlatform.c index 341f5c1596..1e87820e93 100644 --- a/OvmfPkg/Library/PlatformBdsLib/BdsPlatform.c +++ b/OvmfPkg/Library/PlatformBdsLib/BdsPlatform.c @@ -1185,7 +1185,6 @@ Returns: --*/
{
EFI_STATUS Status;
- UINT16 Timeout;
EFI_BOOT_MODE BootMode;
DEBUG ((EFI_D_INFO, "PlatformBdsPolicyBehavior\n"));
@@ -1204,11 +1203,6 @@ Returns: }
//
- // Init the time out value
- //
- Timeout = PcdGet16 (PcdPlatformBootTimeOut);
-
- //
// Load the driver option as the driver option list
//
PlatformBdsGetDriverOption (DriverOptionList);
@@ -1261,7 +1255,7 @@ Returns: //
BdsLibBuildOptionFromVar (BootOptionList, L"BootOrder");
- PlatformBdsEnterFrontPage (Timeout, TRUE);
+ PlatformBdsEnterFrontPage (GetFrontPageTimeoutFromQemu(), TRUE);
}
VOID
|