From 0a54fb533d9b03ba4ad24bfc9180ee5803feef51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= Date: Fri, 27 May 2016 09:05:02 +0200 Subject: [PATCH] lib/hardwaremain: Add \n to "Boot failed" message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I106fccd725a5c944f4e8e0f196b31c9344f588c7 Signed-off-by: Jonathan Neuschäfer Reviewed-on: https://review.coreboot.org/14984 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/lib/hardwaremain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c index 10ef96cc0b..ab4d9f48e2 100644 --- a/src/lib/hardwaremain.c +++ b/src/lib/hardwaremain.c @@ -227,7 +227,7 @@ static boot_state_t bs_payload_boot(void *arg) { payload_run(); - printk(BIOS_EMERG, "Boot failed"); + printk(BIOS_EMERG, "Boot failed\n"); /* Returning from this state will fail because the following signals * return to a completed state. */ return BS_PAYLOAD_BOOT;