j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: mcayland Date: Sun Mar 14 22:35:54 2010 New Revision: 701 URL: http://tracker.coreboot.org/trac/openbios/changeset/701
Log: Fix a debug whereby the debug banner was being printed to the debug output rather than the console.
Signed-off-by: Mark Cave-Ayland mark.cave-ayland@siriusit.co.uk
Modified: trunk/openbios-devel/kernel/internal.c
Modified: trunk/openbios-devel/kernel/internal.c ============================================================================== --- trunk/openbios-devel/kernel/internal.c Sun Mar 14 22:14:04 2010 (r700) +++ trunk/openbios-devel/kernel/internal.c Sun Mar 14 22:35:54 2010 (r701) @@ -635,7 +635,7 @@
default: /* Display debug banner */ - printk(DEBUG_BANNER); + printf_console(DEBUG_BANNER); while (!availchar()); k = getchar(); }