From: Simon Glass <[email protected]> Add a message about starting the kernel. For EFI this will be printed when boot-services are exited.
Signed-off-by: Simon Glass <[email protected]> Signed-off-by: Simon Glass <[email protected]> --- boot/bootm_final.c | 2 ++ 1 file changed, 2 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(); } -- 2.43.0

