This fixes a regression introduced in the `ukconsole`
changes. The recent updates to the Xen console drivers
removed the `prepare_console()` and `init_console()`
functions in favor of calling the same code through
the early init tab.
Signed-off-by: Thassilo Schulze <thassilo@unikraft.io>
Approved-by: Michalis Pappas <michalis@unikraft.io>
Reviewed-by: Michalis Pappas <michalis@unikraft.io>
Reviewed-by: Razvan Deaconescu <razvand@unikraft.io>
GitHub-Closes: #1490
/* Set up events. */
init_events();
- /* Do early init */
- uk_boot_early_init(bi);
-
/* Initialize logical boot CPU */
r = lcpu_init(lcpu_get_bsp());
if (unlikely(r))
get_console();
get_xenbus();
- prepare_console();
- /* Init console */
- init_console();
+ /* Do early init */
+ uk_boot_early_init(bi);
uk_boot_entry();
}