From: Heinrich Schuchardt Date: Thu, 5 Jul 2018 06:18:00 +0000 (+0200) Subject: efi_loader: clear screen has to reset cursor position X-Git-Tag: v2018.09-rc1~2^2~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e67ff94deda15f344af62b46ef21b3bb10d1c0f1;p=oweals%2Fu-boot.git efi_loader: clear screen has to reset cursor position After clearing the screen the cursor position is row 0, column 0. Signed-off-by: Heinrich Schuchardt Signed-off-by: Alexander Graf --- diff --git a/lib/efi_loader/efi_console.c b/lib/efi_loader/efi_console.c index 1d52753456..3fd0d2fd51 100644 --- a/lib/efi_loader/efi_console.c +++ b/lib/efi_loader/efi_console.c @@ -335,6 +335,8 @@ static efi_status_t EFIAPI efi_cout_clear_screen( EFI_ENTRY("%p", this); printf(ESC"[2J"); + efi_con_mode.cursor_column = 0; + efi_con_mode.cursor_row = 0; return EFI_EXIT(EFI_SUCCESS); }