]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/README
OvmfPkg README: Group network information together
[mirror_edk2.git] / OvmfPkg / README
1
2 === OVMF OVERVIEW ===
3
4 The Open Virtual Machine Firmware (OVMF) project aims
5 to support firmware for Virtual Machines using the edk2
6 code base. More information can be found at:
7
8 http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=OVMF
9
10 === STATUS ===
11
12 Current status: Alpha
13
14 Current capabilities:
15 * IA32 and X64 architectures
16 * QEMU (0.9.1 or later)
17 - Video, keyboard, IDE, CD-ROM, serial
18 - Runs UEFI shell
19 - Optional NIC support. Requires QEMU (0.12.2 or later)
20 * UEFI Linux has booted (but is not stable)
21
22 === FUTURE PLANS ===
23
24 * Stabilize UEFI Linux boot
25 * Test/Stabilize UEFI Self-Certification Tests (SCT) results
26
27 === BUILDING OVMF ===
28
29 Pre-requisites:
30 * Build environment capable of build the edk2 MdeModulePkg.
31 * A properly configured ASL compiler
32 * Intel ASL compiler: Available from http://www.acpica.org
33 or
34 * Microsoft ASL compiler: Available from http://www.acpi.info
35
36 Update Conf/target.txt ACTIVE_PLATFORM for OVMF:
37 PEI arch DXE arch UEFI interfaces
38 * OvmfPkg/OvmfPkgIa32.dsc IA32 IA32 IA32
39 * OvmfPkg/OvmfPkgIa32X64.dsc IA32 X64 X64
40 * OvmfPkg/OvmfPkgX64.dsc X64 X64 X64
41
42 Update Conf/target.txt TARGET_ARCH based on the .dsc file:
43 TARGET_ARCH
44 * OvmfPkg/OvmfPkgIa32.dsc IA32
45 * OvmfPkg/OvmfPkgIa32X64.dsc IA32 X64
46 * OvmfPkg/OvmfPkgX64.dsc X64
47
48 Following the edk2 build process, you will find the OVMF binaries
49 under the $WORKSPACE/Build/*/*/FV directory. The actual path will
50 depend on how your build is configured. You can expect to find
51 these binary outputs:
52 * OVMF.FD
53 * Please note! This filename has changed. Older releases used OVMF.Fv.
54 * CirrusLogic5446.rom
55
56 More information on building OVMF can be found at:
57
58 http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=How_to_build_OVMF
59
60 === RUNNING OVMF on QEMU ===
61
62 * QEMU 0.9.1 or later is required.
63 * Either copy, rename or symlink OVMF.FD => bios.bin
64 * Either copy, rename or symlink CirrusLogic5446.rom => vgabios-cirrus.bin
65 * Be sure to use qemu-system-x86_64, if you are using and X64 firmware.
66 (qemu-system-x86_64 works for the IA32 firmware as well, of course.)
67 * Use the QEMU -L parameter to specify the directory where the bios.bin
68 and vgabios-cirrus.bin files are located.
69 * Optionally you can use the QEMU -serial command to capture the
70 OVMF debug messages. For example: -serial file:serial.log
71 * The EFI shell is built into OVMF builds at this time, so it should
72 run automatically if a UEFI boot application is not found on the
73 removable media.
74 * On Linux, newer version of QEMU may enable KVM feature, and this might
75 cause OVMF to fail to boot. The QEMU '-no-kvm' may allow OVMF to boot.
76
77 === Build Scripts ===
78
79 On environments with the bash shell you can use OvmfPkg/build32.sh and
80 OvmfPkg/build64.sh to simplify building and running OVMF.
81
82 So, for example, to build + run OVMF X64:
83 $ OvmfPkg/build64.sh
84 $ OvmfPkg/build64.sh qemu
85
86 And to run a 64-bit UEFI bootable ISO image:
87 $ OvmfPkg/build64.sh qemu -cdrom /path/to/disk-image.iso
88
89 === Network Support ===
90
91 To add network drivers to OVMF:
92
93 * Download UEFI drivers for the e1000 NIC
94 - http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=17515&lang=eng
95 - Install the drivers into a directory called Intel3.5 in your WORKSPACE
96
97 * Include the drivers in OVMF during the build:
98 - Add '-D NETWORK_ENABLE' to your build command
99 - For example: build -D NETWORK_ENABLE
100
101 * Use the QEMU -net parameter to enable NIC support.
102 - QEMU does not support UEFI DHCP or UEFI PXE Boot, so long timeouts will
103 occur when NICs are enabled. The long timeouts can be avoided by
104 interrupts the boot sequence by pressing a key when the logo appears.
105 - Example: Enable e1000 NIC with a DHCP server and restrict packet
106 forwarding:
107 -net nic,model=e1000 -net user,restrict=yes -net user,dhcpstart=10.0.2.10
108 - Example: Enable e1000 NIC with a DHCP server, restrict packet forwarding,
109 and generate PCAP file:
110 -net nic,model=e1000 -net user,restrict=yes -net user,dhcpstart=10.0.2.10
111 -net dump,file=a.pcap
112 - Example: Enable 2 e1000 NICs with a DHCP server and restrict
113 packet forwarding:
114 -net nic,model=e1000,addr=3 -net nic,model=e1000,addr=4
115 -net user,restrict=yes -net user,dhcpstart=10.0.2.10
116