We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f99962 commit e0fe246Copy full SHA for e0fe246
1 file changed
src/platform/t234ccplex/efiboot.c
@@ -425,7 +425,7 @@ efi_boot_thread(void *arg)
425
426
int (*entrypoint)(void *handle, const efi_system_table_t *t);
427
entrypoint = h->loaded_image.image_base + pe->entry_point;
428
- printf("Transfer control to kernel\n");
+ printf("Kernel initializing...\n");
429
uint64_t r = entrypoint(h, &h->system_table);
430
printf("Kernel failed to start, returncode: 0x%lx\n", r);
431
return NULL;
@@ -472,9 +472,11 @@ prep_exit_boot_services(void)
472
473
shutdown_notification("EFI Loader");
474
475
+ printf("Shutting down devices ... ");
476
err = device_shutdown(NULL);
477
if(err)
478
return -1;
479
+ printf("done.\nBootloader transfers control to kernel.\n");
480
481
return 0;
482
}
0 commit comments