mirror of https://github.com/acidanthera/audk.git
Update to use correct file name for video option.
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13365 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
4ef15e6e33
commit
922f593a04
|
@ -50,7 +50,7 @@ depend on how your build is configured. You can expect to find
|
||||||
these binary outputs:
|
these binary outputs:
|
||||||
* OVMF.FD
|
* OVMF.FD
|
||||||
- Please note! This filename has changed. Older releases used OVMF.Fv.
|
- Please note! This filename has changed. Older releases used OVMF.Fv.
|
||||||
* CirrusLogic5446.rom
|
* OvmfVideo.rom
|
||||||
|
|
||||||
More information on building OVMF can be found at:
|
More information on building OVMF can be found at:
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=How_to_build_OVM
|
||||||
|
|
||||||
* QEMU 0.9.1 or later is required.
|
* QEMU 0.9.1 or later is required.
|
||||||
* Either copy, rename or symlink OVMF.FD => bios.bin
|
* Either copy, rename or symlink OVMF.FD => bios.bin
|
||||||
* Either copy, rename or symlink CirrusLogic5446.rom => vgabios-cirrus.bin
|
* Either copy, rename or symlink OvmfVideo.rom => vgabios-cirrus.bin
|
||||||
* Be sure to use qemu-system-x86_64, if you are using and X64 firmware.
|
* Be sure to use qemu-system-x86_64, if you are using and X64 firmware.
|
||||||
(qemu-system-x86_64 works for the IA32 firmware as well, of course.)
|
(qemu-system-x86_64 works for the IA32 firmware as well, of course.)
|
||||||
* Use the QEMU -L parameter to specify the directory where the bios.bin
|
* Use the QEMU -L parameter to specify the directory where the bios.bin
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
# Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>
|
||||||
#
|
#
|
||||||
# This program and the accompanying materials
|
# This program and the accompanying materials
|
||||||
# are licensed and made available under the terms and conditions of the BSD License
|
# are licensed and made available under the terms and conditions of the BSD License
|
||||||
|
@ -227,7 +227,7 @@ def create_zip(arch):
|
||||||
'FV'
|
'FV'
|
||||||
)
|
)
|
||||||
zipf.write(os.path.join(FV_DIR, 'OVMF.fd'), 'OVMF.fd')
|
zipf.write(os.path.join(FV_DIR, 'OVMF.fd'), 'OVMF.fd')
|
||||||
zipf.write(os.path.join(FV_DIR, 'CirrusLogic5446.rom'), 'CirrusLogic5446.rom')
|
zipf.write(os.path.join(FV_DIR, 'OvmfVideo.rom'), 'OvmfVideo.rom')
|
||||||
zipf.close()
|
zipf.close()
|
||||||
print '[done]'
|
print '[done]'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue