912857ec6c
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3467 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
47 lines
762 B
C
47 lines
762 B
C
#include <console/loglevel.h>
|
|
|
|
#if CONFIG_USE_PRINTK_IN_CAR == 0
|
|
static void __console_tx_byte(unsigned char byte)
|
|
{
|
|
uart_tx_byte(byte);
|
|
}
|
|
|
|
#include "console_print.c"
|
|
|
|
#else
|
|
/* CONFIG_USE_PRINTK_IN_CAR == 1 */
|
|
|
|
#include "console_printk.c"
|
|
|
|
#if CONFIG_USE_INIT == 0
|
|
// do_printk
|
|
#include "../../../console/vtxprintf.c"
|
|
#include "printk_init.c"
|
|
#endif
|
|
|
|
#endif /* CONFIG_USE_PRINTK_IN_CAR */
|
|
|
|
#ifndef COREBOOT_EXTRA_VERSION
|
|
#define COREBOOT_EXTRA_VERSION ""
|
|
#endif
|
|
|
|
static void console_init(void)
|
|
{
|
|
static const char console_test[] =
|
|
"\r\n\r\ncoreboot-"
|
|
COREBOOT_VERSION
|
|
COREBOOT_EXTRA_VERSION
|
|
" "
|
|
COREBOOT_BUILD
|
|
" starting...\r\n";
|
|
print_info(console_test);
|
|
}
|
|
|
|
|
|
static void die(const char *str)
|
|
{
|
|
print_emerg(str);
|
|
do {
|
|
hlt();
|
|
} while(1);
|
|
}
|