Add a kconfig option to choose between outputing ACS characters or

their plain ASCII fallbacks over serial console.

Signed-off-by: Ulf Jordan <jordan@chalmers.se>
Acked-by: Jordan Crouse <jordan.crouse@amd.com>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3517 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Ulf Jordan
2008-08-18 19:29:41 +00:00
committed by Jordan Crouse
parent 364317b199
commit 2aea11f57f
2 changed files with 18 additions and 0 deletions

View File

@ -110,6 +110,9 @@ chtype fallback_acs_map[128] =
'|', '<', '>', '*', '!', 'f', 'o', ' ',
};
#ifdef CONFIG_SERIAL_ACS_FALLBACK
chtype serial_acs_map[128];
#else
/* See acsc of vt100. */
chtype serial_acs_map[128] =
{
@ -130,6 +133,7 @@ chtype serial_acs_map[128] =
'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
'x', 'y', 'z', '{', '|', '}', '~', 0,
};
#endif
/* See acsc of linux. */
chtype console_acs_map[128] =