From 0a4a5b8cefd4c172911e869801aace91f80a42b4 Mon Sep 17 00:00:00 2001 From: Ahmad Khalifa Date: Fri, 14 Jun 2024 02:17:25 +0300 Subject: [PATCH] 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 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 4a3219ef301..a112528d8c9 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;