diff options
author | Laszlo Ersek <lersek@redhat.com> | 2016-05-25 14:11:14 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2016-05-27 11:30:10 +0200 |
commit | 27a4059387dc46e0f83faacb30d8ff6fa5b3eb96 (patch) | |
tree | 5e3d1c6e01c9a3c00cd97859114d1d04efb34e20 | |
parent | fd096a99a99bd2d59ad6619b53477e6365df8850 (diff) | |
download | edk2-27a4059387dc46e0f83faacb30d8ff6fa5b3eb96.zip edk2-27a4059387dc46e0f83faacb30d8ff6fa5b3eb96.tar.gz edk2-27a4059387dc46e0f83faacb30d8ff6fa5b3eb96.tar.bz2 |
OvmfPkg/PlatformBootManagerLib: keep the logo after connecting devices
OVMF (unlike ArmVirtPkg) has traditionally cleared the screen after
connecting devices. This is not really necessary, and keeping the logo up
while the progress bar is advancing at the bottom looks great. So don't
clear the screen.
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
-rw-r--r-- | OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c b/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c index b5af583..befcc57 100644 --- a/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c +++ b/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c @@ -1200,11 +1200,6 @@ Returns: EfiBootManagerConnectAll ();
PciAcpiInitialization ();
-
- //
- // Clear the logo after all devices are connected.
- //
- gST->ConOut->ClearScreen (gST->ConOut);
}
/**
|