feat(config): add option to skip BIOS

This commit is contained in:
2022-10-17 17:31:07 -03:00
parent 7097e21361
commit fc53a40b3c
3 changed files with 6 additions and 1 deletions

View File

@@ -65,7 +65,7 @@ pub fn main() anyerror!void {
try bus.init(allocator, &scheduler, &cpu, paths);
defer bus.deinit();
if (result.args.skip or paths.bios == null) {
if (config.config().guest.skip_bios or result.args.skip or paths.bios == null) {
cpu.fastBoot();
}