Skip to content

Commit e0fe246

Browse files
committed
t234ccplex: Clarify console output when booting a kernel
1 parent 1f99962 commit e0fe246

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/platform/t234ccplex/efiboot.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ efi_boot_thread(void *arg)
425425

426426
int (*entrypoint)(void *handle, const efi_system_table_t *t);
427427
entrypoint = h->loaded_image.image_base + pe->entry_point;
428-
printf("Transfer control to kernel\n");
428+
printf("Kernel initializing...\n");
429429
uint64_t r = entrypoint(h, &h->system_table);
430430
printf("Kernel failed to start, returncode: 0x%lx\n", r);
431431
return NULL;
@@ -472,9 +472,11 @@ prep_exit_boot_services(void)
472472

473473
shutdown_notification("EFI Loader");
474474

475+
printf("Shutting down devices ... ");
475476
err = device_shutdown(NULL);
476477
if(err)
477478
return -1;
479+
printf("done.\nBootloader transfers control to kernel.\n");
478480

479481
return 0;
480482
}

0 commit comments

Comments
 (0)