Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 Jul 2024 23:31:39 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 3b68c491d371 - main - efi_console: Stay inline with the UEFI spec
Message-ID:  <202407082331.468NVd2X031251@gitrepo.freebsd.org>

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

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

commit 3b68c491d37196bb76a95bce3c02f7c6d5ba22fd
Author:     Ahmad Khalifa <ahmadkhalifa570@gmail.com>
AuthorDate: 2024-06-13 23:17:25 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-07-08 23:29:32 +0000

    efi_console: Stay inline with the UEFI spec
    
    The UEFI spec states that the minimum garunteed terminal resolution is
    80x25.
    
    Signed-off-by: Ahmad Khalifa <ahmadkhalifa570@gmail.com>
    Reviewed by: imp
    Pull Request: https://github.com/freebsd/freebsd-src/pull/1292
---
 stand/efi/libefi/efi_console.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stand/efi/libefi/efi_console.c b/stand/efi/libefi/efi_console.c
index 2e28cf1ec460..5813e2d20aef 100644
--- a/stand/efi/libefi/efi_console.c
+++ b/stand/efi/libefi/efi_console.c
@@ -63,7 +63,7 @@ void HO(void);
 void end_term(void);
 #endif
 
-#define	TEXT_ROWS	24
+#define	TEXT_ROWS	25
 #define	TEXT_COLS	80
 
 static tf_bell_t	efi_cons_bell;



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