From owner-dev-commits-src-all@freebsd.org Wed Jan 13 18:19:40 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 067AF4E45B6; Wed, 13 Jan 2021 18:19:40 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DGG1l6j0cz3Jjx; Wed, 13 Jan 2021 18:19:39 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D77A51BDA3; Wed, 13 Jan 2021 18:19:39 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 10DIJdwG073190; Wed, 13 Jan 2021 18:19:39 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 10DIJdVZ073189; Wed, 13 Jan 2021 18:19:39 GMT (envelope-from git) Date: Wed, 13 Jan 2021 18:19:39 GMT Message-Id: <202101131819.10DIJdVZ073189@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Toomas Soome Subject: git: fdaf9cb942d9 - main - Revert "loader.efi: disable workaround for serial console on non-x86" MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: tsoome X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: fdaf9cb942d995969b79eb8ad3fa91b7592198cd Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jan 2021 18:19:40 -0000 The branch main has been updated by tsoome: URL: https://cgit.FreeBSD.org/src/commit/?id=fdaf9cb942d995969b79eb8ad3fa91b7592198cd commit fdaf9cb942d995969b79eb8ad3fa91b7592198cd Author: Toomas Soome AuthorDate: 2021-01-13 18:18:35 +0000 Commit: Toomas Soome 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;