diff options
Diffstat (limited to 'src/console/console.c')
-rw-r--r-- | src/console/console.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/console/console.c b/src/console/console.c index d93366852a..8f60f04d4c 100644 --- a/src/console/console.c +++ b/src/console/console.c @@ -87,7 +87,7 @@ int console_tst_byte(void) return 0; } -#else +#else // __PRE_RAM__ ^^^ NOT defined vvv defined void console_init(void) { @@ -104,6 +104,9 @@ void console_init(void) #if CONFIG_CONSOLE_NE2K ne2k_init(CONFIG_CONSOLE_NE2K_IO_PORT); #endif +#if CONFIG_CONSOLE_CBMEM + cbmemc_init(); +#endif static const char console_test[] = "\n\ncoreboot-" COREBOOT_VERSION |