Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Feb 2021 21:30:06 GMT
From:      Toomas Soome <tsoome@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 2bd4ff2d8911 - main - loader.efi: There are systems without ConOut, also use ConOutDev
Message-ID:  <202102042130.114LU6Vk018591@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by tsoome:

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

commit 2bd4ff2d8911009283e4e615ca4aad35a845f48b
Author:     Toomas Soome <tsoome@FreeBSD.org>
AuthorDate: 2021-02-04 20:49:02 +0000
Commit:     Toomas Soome <tsoome@FreeBSD.org>
CommitDate: 2021-02-04 21:29:38 +0000

    loader.efi: There are systems without ConOut, also use ConOutDev
    
    Conout does contian the default output device name.
    ConOutDev does contain all possible output device names, so we can
    use it as fallback, when there is no ConOut.
    
    PR: 253253
---
 stand/efi/loader/main.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/stand/efi/loader/main.c b/stand/efi/loader/main.c
index ca41cd4a2610..32b278950745 100644
--- a/stand/efi/loader/main.c
+++ b/stand/efi/loader/main.c
@@ -735,6 +735,8 @@ parse_uefi_con_out(void)
 	how = 0;
 	sz = sizeof(buf);
 	rv = efi_global_getenv("ConOut", buf, &sz);
+	if (rv != EFI_SUCCESS)
+		rv = efi_global_getenv("ConOutDev", buf, &sz);
 	if (rv != EFI_SUCCESS) {
 		/* If we don't have any ConOut default to serial */
 		how = RB_SERIAL;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102042130.114LU6Vk018591>