Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for a configuration file #326

Merged
merged 10 commits into from
Jan 27, 2023
Prev Previous commit
Next Next commit
Fix an import
  • Loading branch information
asensio-project committed Jan 26, 2023
commit a6ee0f4f7b1e5406700321922ee212630a1ac163
2 changes: 1 addition & 1 deletion tests/runner/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use bootloader::BootConfig;
use std::{io::Write, path::Path, process::Command};
use std::{io::Read, path::Path, process::Command};

const QEMU_ARGS: &[&str] = &[
"-device",
Expand Down
1 change: 0 additions & 1 deletion uefi/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#![no_std]
#![no_main]
#![feature(abi_efiapi)]
#![deny(unsafe_op_in_unsafe_fn)]

use crate::memory_descriptor::UefiMemoryDescriptor;
Expand Down