git: fdaf9cb942d9 - main - Revert "loader.efi: disable workaround for serial console on non-x86"

Toomas Soome tsoome at FreeBSD.org
Wed Jan 13 18:19:40 UTC 2021


The branch main has been updated by tsoome:

URL: https://cgit.FreeBSD.org/src/commit/?id=fdaf9cb942d995969b79eb8ad3fa91b7592198cd

commit fdaf9cb942d995969b79eb8ad3fa91b7592198cd
Author:     Toomas Soome <tsoome at FreeBSD.org>
AuthorDate: 2021-01-13 18:18:35 +0000
Commit:     Toomas Soome <tsoome at FreeBSD.org>
CommitDate: 2021-01-13 18:18:35 +0000

    Revert "loader.efi: disable workaround for serial console on non-x86"
    
    This patch is creating some issues, reverting it.
    
    This reverts commit 8b18395487506d3602205e5844e0b67ba0c0dc80.
---
 stand/efi/libefi/efi_console.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/stand/efi/libefi/efi_console.c b/stand/efi/libefi/efi_console.c
index 4c04461a5f92..7024f9c8b2f2 100644
--- a/stand/efi/libefi/efi_console.c
+++ b/stand/efi/libefi/efi_console.c
@@ -929,11 +929,7 @@ cons_update_mode(bool use_gfx_mode)
 	 * also just use the old emulator. RB_MULTIPLE also implies
 	 * we're using a serial console.
 	 */
-#if defined(__i386__) || defined(__amd64__)
 	mode = parse_uefi_con_out();
-#else
-	mode = 0;
-#endif
 	if ((mode & (RB_SERIAL | RB_MULTIPLE)) == 0) {
 		conout->EnableCursor(conout, FALSE);
 		gfx_state.tg_cursor_visible = false;


More information about the dev-commits-src-all mailing list