Don't require system_table in console

This commit is contained in:
Justin C. Miller
2020-02-22 15:45:54 -08:00
parent f627ea7de0
commit 570638bba6
3 changed files with 13 additions and 18 deletions

View File

@@ -265,7 +265,7 @@ efi_main(uefi::handle image_handle, uefi::system_table *st)
using namespace boot;
error::cpu_assert_handler handler;
console con(st);
console con(st->boot_services, st->con_out);
return bootloader_main_uefi(st, con);
}