From 27a4059387dc46e0f83faacb30d8ff6fa5b3eb96 Mon Sep 17 00:00:00 2001 From: Laszlo Ersek Date: Wed, 25 May 2016 14:11:14 +0200 Subject: [PATCH] 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 Cc: Ruiyu Ni Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek Reviewed-by: Jordan Justen --- OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c b/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c index b5af58367e..befcc5707a 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); } /** -- 2.39.2