libpayload: Enable keyboard translation so that we can use scancode set 1

The qemu keyboard controller defaults to using scancode set 2, we use set 1.
Turn on the translate mode in the keyboard controller to force the issue.

Signed-off-by: Jordan Crouse <jordan.crouse@amd.com>
Acked-by: Peter Stuge <peter@stuge.se>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3270 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Jordan Crouse
2008-04-25 23:09:39 +00:00
parent 24a0404759
commit 63f181f97c
3 changed files with 60 additions and 0 deletions

View File

@ -37,6 +37,9 @@ void console_init(void)
#ifdef CONFIG_SERIAL_CONSOLE
serial_init();
#endif
#ifdef CONFIG_PC_KEYBOARD
keyboard_init();
#endif
}
static void device_putchar(unsigned char c)