diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2011-01-13 11:40:38 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2011-01-13 11:40:38 +0000 |
commit | 4c8e269841bbdfd3325b8eb98a651a8b1df85399 (patch) | |
tree | 7c8561ed800a0c483059899802c0a91e0884a6ca /src/mainboard | |
parent | 9144304771be6cc89fcd010a0c8bc123bb750cfc (diff) | |
download | coreboot-4c8e269841bbdfd3325b8eb98a651a8b1df85399.tar.xz |
Default to CRT on Kontron/986lcd-m. "default display" doesn't always
select the right output device.
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Acked-by: Joseph Smith <joe@settoplinux.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6252 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/kontron/986lcd-m/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/kontron/986lcd-m/mainboard.c b/src/mainboard/kontron/986lcd-m/mainboard.c index f806ede363..c7a50db9e4 100644 --- a/src/mainboard/kontron/986lcd-m/mainboard.c +++ b/src/mainboard/kontron/986lcd-m/mainboard.c @@ -46,7 +46,7 @@ static int int15_handler(void) switch (M.x86.R_AX) { case 0x5f35: /* Boot Display */ M.x86.R_AX = 0x005f; // Success - M.x86.R_CL = BOOT_DISPLAY_DEFAULT; + M.x86.R_CL = BOOT_DISPLAY_CRT; break; case 0x5f40: /* Boot Panel Type */ // M.x86.R_AX = 0x015f; // Supported but failed |