diff mbox series

[1/1] efi_loader: reset colors before clearing screen

Message ID 20220430070634.43275-1-heinrich.schuchardt@canonical.com
State Accepted, archived
Commit 5c1037d57835eb1cbeb9c78069839a445f8ab86b
Delegated to: Heinrich Schuchardt
Headers show
Series [1/1] efi_loader: reset colors before clearing screen | expand

Commit Message

Heinrich Schuchardt April 30, 2022, 7:06 a.m. UTC
When resetting the text console the colors have to be set before clearing
the screen. Otherwise the background color may be wrong.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
---
 lib/efi_loader/efi_console.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/lib/efi_loader/efi_console.c b/lib/efi_loader/efi_console.c
index ba68a15017..60a3fc85ac 100644
--- a/lib/efi_loader/efi_console.c
+++ b/lib/efi_loader/efi_console.c
@@ -522,11 +522,11 @@  static efi_status_t EFIAPI efi_cout_reset(
 {
 	EFI_ENTRY("%p, %d", this, extended_verification);
 
-	/* Clear screen */
-	EFI_CALL(efi_cout_clear_screen(this));
 	/* Set default colors */
 	efi_con_mode.attribute = 0x07;
 	printf(ESC "[0;37;40m");
+	/* Clear screen */
+	EFI_CALL(efi_cout_clear_screen(this));
 
 	return EFI_EXIT(EFI_SUCCESS);
 }