diff options
author | Aaron Durbin <adurbin@chromium.org> | 2015-05-13 13:38:59 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2015-05-13 20:54:00 +0200 |
commit | 2591e937e76ccb797d77adbcb667939ca9dfdae5 (patch) | |
tree | 58b94bbdc18bc00516e6d3739016acbba923a585 /src/include | |
parent | fd6fb26ae77ae125fb9b9f0c7949e3e8b5796fd1 (diff) |
secmon: allow for serial console
Add necessary checks and objects for secmon serial console.
Change-Id: Ibafa19061255ef6847a424922565a866328ff34c
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/10197
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/console/uart.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/console/uart.h b/src/include/console/uart.h index 7c744dddd2..1304003c8a 100644 --- a/src/include/console/uart.h +++ b/src/include/console/uart.h @@ -57,7 +57,7 @@ void oxford_remap(unsigned int new_base); #define __CONSOLE_SERIAL_ENABLE__ CONFIG_CONSOLE_SERIAL && \ (ENV_BOOTBLOCK || ENV_ROMSTAGE || ENV_RAMSTAGE || ENV_VERSTAGE || \ - (ENV_SMM && CONFIG_DEBUG_SMI)) + ENV_SECMON || (ENV_SMM && CONFIG_DEBUG_SMI)) #if __CONSOLE_SERIAL_ENABLE__ static inline void __uart_init(void) { uart_init(CONFIG_UART_FOR_CONSOLE); } |