diff mbox

[edk2,4/6] OvmfPkg/PlatformBootManagerLib: keep the logo after connecting devices

Message ID 1464179806-24099-5-git-send-email-lersek@redhat.com
State Accepted
Commit 27a4059387dc46e0f83faacb30d8ff6fa5b3eb96
Headers show

Commit Message

Laszlo Ersek May 25, 2016, 12:36 p.m. UTC
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>

---
 OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c | 5 -----
 1 file changed, 5 deletions(-)

-- 
1.8.3.1


_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
diff mbox

Patch

diff --git a/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c b/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c
index dd8757f58ec3..30eaf3c7374a 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);
 }
 
 /**