diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-04-12 15:08:51 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-04-12 15:08:51 +0000 |
commit | eaf4f336ea42dc32e1a5b31d6b7822c125a15d34 (patch) | |
tree | d148c5648797daa1e4d522af74ae5c01a3659178 /OvmfPkg/build.sh | |
parent | a12199e66fb7acf284c96091ce90fa666f87ce02 (diff) | |
download | edk2-eaf4f336ea42dc32e1a5b31d6b7822c125a15d34.tar.gz edk2-eaf4f336ea42dc32e1a5b31d6b7822c125a15d34.tar.bz2 edk2-eaf4f336ea42dc32e1a5b31d6b7822c125a15d34.zip |
OvmfPkg: Add QemuVideoDxe driver
This driver provides a UEFI Graphics Output Protocol (GOP) driver
for the QEMU Cirrus VGA hardware. It enables 24-bit color,
and uses the standard 32-bit GOP pixel format whenever possible.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11524 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OvmfPkg/build.sh')
-rwxr-xr-x | OvmfPkg/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OvmfPkg/build.sh b/OvmfPkg/build.sh index 0696999a65..e107eeae86 100755 --- a/OvmfPkg/build.sh +++ b/OvmfPkg/build.sh @@ -179,9 +179,9 @@ fi if [[ "$RUN_QEMU" == "yes" ]]; then if [[ ! -d $QEMU_FIRMWARE_DIR ]]; then mkdir $QEMU_FIRMWARE_DIR - ln -s $FV_DIR/OVMF.fd $QEMU_FIRMWARE_DIR/bios.bin - ln -s $FV_DIR/CirrusLogic5446.rom $QEMU_FIRMWARE_DIR/vgabios-cirrus.bin fi + ln -sf $FV_DIR/OVMF.fd $QEMU_FIRMWARE_DIR/bios.bin + ln -sf $FV_DIR/OvmfVideo.rom $QEMU_FIRMWARE_DIR/vgabios-cirrus.bin if [[ "$ADD_QEMU_HDA" == "yes" ]]; then AUTO_QEMU_HDA="-hda fat:$BUILD_ROOT_ARCH" else |