git: 3b68c491d371 - main - efi_console: Stay inline with the UEFI spec

From: Warner Losh <imp_at_FreeBSD.org>
Date: Mon, 08 Jul 2024 23:31:39 UTC
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;