Date: Wed, 26 Mar 2025 01:28:53 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 0a4a5b8cefd4 - stable/14 - efi_console: Stay inline with the UEFI spec Message-ID: <202503260128.52Q1SrM4047055@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=0a4a5b8cefd4c172911e869801aace91f80a42b4 commit 0a4a5b8cefd4c172911e869801aace91f80a42b4 Author: Ahmad Khalifa <ahmadkhalifa570@gmail.com> AuthorDate: 2024-06-13 23:17:25 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2025-03-26 01:28:37 +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 (cherry picked from commit 3b68c491d37196bb76a95bce3c02f7c6d5ba22fd) --- 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 4a3219ef3017..a112528d8c95 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?202503260128.52Q1SrM4047055>