forked from kholia/OSX-KVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OVMF-notes.txt
41 lines (27 loc) · 1.09 KB
/
OVMF-notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Building OVMF
-------------
# Add tools and build dependencies:
apt-get update
apt-get install build-essential git lintian debhelper iasl nasm \
python uuid-dev -y
git clone https://github.com/tianocore/edk2
cd edk2
make -C BaseTools
. edksetup.sh BaseTools
build -a X64 -t GCC5 -p OvmfPkg/OvmfPkgX64.dsc -b RELEASE
(OBSOLETE) The included blobs were built from commit 2913ebb2b550f50a.
Host OS
-------
OVMF blobs (OVMF_CODE.fd, OVMF_VARS.fd) were built on Ubuntu 18.04 LTS based on
https://github.com/kholia/edk2 (upstream commit 328409ce8de7f3 and some local
commits).
Older OVMF blobs (OVMF_CODE.fd, OVMF_VARS.fd) were built on Ubuntu 14.04.5 LTS
(Trusty Tahr).
OVMF_CODE-pure-efi.fd and OVMF_VARS-pure-efi.fd files (in backup folder) come
from the "edk2.git-ovmf-x64-0-20170922.b3006.gfe4049471b.noarch.rpm" archive
downloaded from https://www.kraxel.org/repos/jenkins/edk2/ site.
References
----------
* https://www.contrib.andrew.cmu.edu/~somlo/OSXKVM/
* https://www.nicksherlock.com/2018/04/patch-ovmf-to-support-macos-in-proxmox-5-1/
* https://github.com/thenickdude/edk2 (macos-support branch)