Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blankon/ovmf-blobs
BIOS.bin for qemu to support UEFI
https://github.com/blankon/ovmf-blobs
Last synced: about 2 months ago
JSON representation
BIOS.bin for qemu to support UEFI
- Host: GitHub
- URL: https://github.com/blankon/ovmf-blobs
- Owner: BlankOn
- Created: 2015-05-21T02:11:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-24T11:24:37.000Z (over 9 years ago)
- Last Synced: 2024-04-14T04:45:02.921Z (9 months ago)
- Size: 2.11 MB
- Stars: 34
- Watchers: 20
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# UEFI bios for QEMU
## Building
### Preparation
```
git clone https://github.com/tianocore/edk2.git
cd edk2```
### bios32.bin
```
OvmfPkg/build.sh -a IA32 -n 4
cp Build/OvmfX64/DEBUG_GCC4?/FV/OVMF.fd bios32.bin
```### bios64.bin
```
OvmfPkg/build.sh -a X64 -n 4
cp Build/OvmfX64/DEBUG_GCC4?/FV/OVMF.fd bios64.bin
```## Using
### 32-bit UEFI in 64-bit system (emulating BayTrail)
```
qemu-system-x86_64 -bios /path/to/bios32.bin ........
```### 64-bit UEFI in 64-bit system
```
qemu-system-x86_64 -bios /path/to/bios64.bin ........
```### 32-bit UEFI in 32-bit system (emulating old Macs
```
qemu-system-i386 -bios /path/to/bios32.bin ........
```