diff options
author | Vadim Bendebury <vbendeb@chromium.org> | 2011-09-30 11:16:49 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-03-29 20:14:52 +0200 |
commit | 1078c67af1228a556b1c5c182e8616271f6b7919 (patch) | |
tree | 87328c0148d61f758e1818ba0fee74e3df180488 /src/boot | |
parent | be25a4ded0957a0ca31f94d32857f1cb03aa42ff (diff) | |
download | coreboot-1078c67af1228a556b1c5c182e8616271f6b7919.tar.xz |
CBMEM CONSOLE: Add code using the new console driver.
The new added code is compiled in when the CBMEM_CONSOLE config
flag is enabled.
Change-Id: Ifd1f492ce6321412a014333babbc5b3f14635988
Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Reviewed-on: http://review.coreboot.org/721
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/boot')
-rw-r--r-- | src/boot/hardwaremain.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/boot/hardwaremain.c b/src/boot/hardwaremain.c index 3d15b551c3..9b293c049a 100644 --- a/src/boot/hardwaremain.c +++ b/src/boot/hardwaremain.c @@ -92,6 +92,9 @@ void hardwaremain(int boot_complete) #if CONFIG_WRITE_HIGH_TABLES == 1 cbmem_initialize(); +#if CONFIG_CONSOLE_CBMEM + cbmemc_reinit(); +#endif #endif #if CONFIG_HAVE_ACPI_RESUME == 1 suspend_resume(); |