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)
This commit is contained in:
Ahmad Khalifa 2024-06-14 02:17:25 +03:00 committed by Warner Losh
parent df872d66f2
commit 0a4a5b8cef

View file

@ -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;