libpayload: gdb: Condition video console init on LP_VIDEO_CONSOLE
With the stub video_console_init() removed from depthcharge in CL:2241493, depthcharge will fail to compile: payloads/libpayload/gdb/stub.c:76: undefined reference to `video_console_init' Since video_console_init() is meant to be implemented in libpayload, libpayload should be consistent with itself by not calling this function when it's not implemented (i.e., when !LP_VIDEO_CONSOLE). Therefore, initialize video console only if LP_VIDEO_CONSOLE is set. BRANCH=none BUG=none TEST=USE="menu_ui" emerge-gale depthcharge Change-Id: Ic45f9073330258cb77301003484ec525b2404180 Signed-off-by: Yu-Ping Wu <yupingso@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42505 Reviewed-by: Joel Kitching <kitching@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
2c807ff6fe
commit
59495543db
|
@ -73,7 +73,8 @@ static void gdb_output_write(const void *buffer, size_t count)
|
|||
if (!gdb_state.resumed) {
|
||||
/* Must be a die_if() in GDB (or a bug), so bail out and die. */
|
||||
gdb_exit(-1);
|
||||
video_console_init();
|
||||
if (CONFIG(LP_VIDEO_CONSOLE))
|
||||
video_console_init();
|
||||
puts("GDB died, redirecting its last words to the screen:\n");
|
||||
console_write(buffer, count);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue