
From: Simon Glass <sjg@chromium.org> Add a message about starting the kernel. For EFI this will be printed when boot-services are exited. Signed-off-by: Simon Glass <sjg@chromium.org> --- boot/bootm_final.c | 2 ++ test/boot/bootflow.c | 3 +++ 2 files changed, 5 insertions(+) diff --git a/boot/bootm_final.c b/boot/bootm_final.c index 263cd95dcb3..71661334e11 100644 --- a/boot/bootm_final.c +++ b/boot/bootm_final.c @@ -10,5 +10,7 @@ void bootm_final(enum bootm_final_t flags) { + printf("\nStarting kernel ...\n\n"); + dm_remove_devices_active(); } diff --git a/test/boot/bootflow.c b/test/boot/bootflow.c index cac5e0b1a35..7034bef1f05 100644 --- a/test/boot/bootflow.c +++ b/test/boot/bootflow.c @@ -1335,6 +1335,9 @@ static int bootflow_efi(struct unit_test_state *uts) /* TODO: Why the \r ? */ ut_assert_nextline("U-Boot test app for EFI_LOADER\r"); ut_assert_nextline("Exiting boot services"); + ut_assert_nextline_empty(); + ut_assert_nextline("Starting kernel ..."); + ut_assert_nextline_empty(); ut_assert_nextline("Exiting test app"); ut_assert_nextline("Boot failed (err=-14)"); -- 2.43.0