1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-28 08:02:54 +00:00

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
This commit is contained in:
Ahmad Khalifa 2024-06-14 02:17:25 +03:00 committed by Warner Losh
parent 4122295afc
commit 3b68c491d3

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;