diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/console/init.c | 2 | ||||
-rw-r--r-- | src/lib/cbmem_console.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/console/init.c b/src/console/init.c index 91d6492e4d..1029e6b14f 100644 --- a/src/console/init.c +++ b/src/console/init.c @@ -71,6 +71,6 @@ asmlinkage void console_init(void) console_hw_init(); - printk(BIOS_INFO, "\n\ncoreboot-%s%s %s " ENV_STRING " starting...\n", + printk(BIOS_NOTICE, "\n\ncoreboot-%s%s %s " ENV_STRING " starting...\n", coreboot_version, coreboot_extra_version, coreboot_build); } diff --git a/src/lib/cbmem_console.c b/src/lib/cbmem_console.c index eb0cc93ee4..b0008b1d9c 100644 --- a/src/lib/cbmem_console.c +++ b/src/lib/cbmem_console.c @@ -156,8 +156,8 @@ static void copy_console_buffer(struct cbmem_console *src_cons_p) return; if (src_cons_p->cursor & OVERFLOW) { - const char overflow_warning[] = "\n*** Pre-CBMEM console " - "overflowed, log truncated ***\n"; + const char overflow_warning[] = "\n*** Pre-CBMEM " ENV_STRING + " console overflowed, log truncated! ***\n"; for (c = 0; c < sizeof(overflow_warning) - 1; c++) cbmemc_tx_byte(overflow_warning[c]); for (c = src_cons_p->cursor & CURSOR_MASK; |