UEFI: Difference between revisions

[unchecked revision][unchecked revision]
Content deleted Content added
Add section for "uefi-run" application. Disclaimer: I am the author of that application.
Line 186:
$ dd if=/dev/zero of=/path/to/uefi.img bs=512 count=93750
</source>
 
====uefi-run helper application====
The uefi-run application is useful for quick testing. It creates a temporary FAT image containing your EFI application and starts qemu.
 
<source lang="bash">
$ uefi-run -b /path/to/OVMF.fd -q /path/to/qemu app.efi -- <extra_qemu_args>
</source>
 
uefi-run is not currently packaged for any distribution. You can install it using cargo (the Rust package manager) though ("cargo install uefi-run").
 
====Linux, root required====