Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anpep/docker-ovmf-pkg
Builds x86-64 QEMU/KVM-compatible UEFI firmware included in TianoCore EDK II.
https://github.com/anpep/docker-ovmf-pkg
docker edk2 ovmf qemu tianocore uefi
Last synced: about 1 month ago
JSON representation
Builds x86-64 QEMU/KVM-compatible UEFI firmware included in TianoCore EDK II.
- Host: GitHub
- URL: https://github.com/anpep/docker-ovmf-pkg
- Owner: anpep
- License: gpl-2.0
- Created: 2019-12-26T17:56:51.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-26T17:57:17.000Z (about 5 years ago)
- Last Synced: 2024-04-17T17:53:25.444Z (9 months ago)
- Topics: docker, edk2, ovmf, qemu, tianocore, uefi
- Language: Shell
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# docker-ovmf-pkg
![license: GNU GPL v2](https://img.shields.io/badge/license-GNU_GPL_v2-brightgreen.svg)
![works: on my machine](https://img.shields.io/badge/works-on_my_machine-brightgreen.svg)
#### X64 TianoCore OVMF Image
> 🛠️ Builds x86-64 QEMU/KVM-compatible UEFI firmware included in TianoCore EDK II.## What's this?
A simple Dockerfile and set of scripts that prepare an Ubuntu container to run
the EDK II development environment for building UEFI drivers and applications.## Requirements
An `edk2` Docker image built from [my-nick-is-taken/docker-edk2](https://github.com/my-nick-is-taken/docker-edk2).## Quick start
```sh
# clone my-nick-is-taken/docker-edk2
git clone https://github.com/my-nick-is-taken/docker-edk2
# build an edk2 image
cd docker-edk2 && docker build --tag edk2 . && cd -
# clone this repository
git clone https://github.com/my-nick-is-taken/docker-ovmf-pkg
# builds the OVMF x64 package
cd docker-ovmf-pkg && ./build.sh && cd -# The OVMF image is now under the docker-ovmf-pkg/Build directory
```