summaryrefslogtreecommitdiffstats
path: root/src/include/console
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2017-03-02 12:29:59 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2017-03-07 00:43:49 +0100
commitec0a393858972dc3e6ac16849f3d83c1ba953880 (patch)
treeb502417e16aaa95bee3ecc28947c234c0475e40b /src/include/console
parenta405a5860d2765911fe7655e81c78e3b563bacab (diff)
downloadcoreboot-ec0a393858972dc3e6ac16849f3d83c1ba953880.tar.gz
coreboot-ec0a393858972dc3e6ac16849f3d83c1ba953880.tar.bz2
coreboot-ec0a393858972dc3e6ac16849f3d83c1ba953880.zip
console: Enable printk for ENV_LIBAGESA
Messages from AGESA proper are additionally controlled by various IDS parameters in board/OptionsIds.h file. Change-Id: I83e975d37ad2bdecb09c483ecae71c0ed6877731 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/18545 Tested-by: build bot (Jenkins) Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/include/console')
-rw-r--r--src/include/console/console.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/console/console.h b/src/include/console/console.h
index 013ef2083ec4..7edce52ff8ff 100644
--- a/src/include/console/console.h
+++ b/src/include/console/console.h
@@ -42,7 +42,7 @@ void __attribute__ ((noreturn)) die(const char *msg);
#define __CONSOLE_ENABLE__ \
((ENV_BOOTBLOCK && IS_ENABLED(CONFIG_BOOTBLOCK_CONSOLE)) || \
(ENV_POSTCAR && IS_ENABLED(CONFIG_POSTCAR_CONSOLE)) || \
- ENV_VERSTAGE || ENV_ROMSTAGE || ENV_RAMSTAGE || \
+ ENV_VERSTAGE || ENV_ROMSTAGE || ENV_RAMSTAGE || ENV_LIBAGESA || \
(ENV_SMM && CONFIG_DEBUG_SMI))
#if __CONSOLE_ENABLE__