This is a tool for running and testing Rust UEFI project.
BootUEFI is modified from bootimage
shell
cargo install bootuefi
First you should install cargo-xbuild
.
Then set bootuefi
as a custom runner in .cargo/config
:
```toml [build] target = "x86_64-unknown-uefi"
[target.x86_64-unknown-uefi] runner = "bootuefi" ```
You can run your rust UEFI application through cargo xrun
or test it throught cargo xtest
.
Configuration is done through a through a [package.metadata.bootuefi]
table in the Cargo.toml
of your project. The following options are available:
```toml [package.metadata.bootuefi]
qemu = "qemu-system-x86_64"
bios = "OVMF.fd"
run-args = []
test-args = []
default-args = true
test-success-exit-code = 0
test-timeout = 300 ```
Default arguments for qemu:
rust
// Disable default devices. QEMU by defaults enables a ton of devices which slow down boot.
"-nodefaults",
// Use a modern machine, with acceleration if possible.
"-machine", "q35,accel=kvm:tcg",
// A standard VGA card with Bochs VBE extensions.
"-vga", "std",
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.