]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Update to use correct file name for video option.
authorniruiyu <niruiyu@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 28 May 2012 06:37:32 +0000 (06:37 +0000)
committerniruiyu <niruiyu@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 28 May 2012 06:37:32 +0000 (06:37 +0000)
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

OvmfPkg/README
OvmfPkg/create-release.py

index e4a4b1f5a1917d5f9a2f7d0c7f1673e233d0c8d5..d6b6f8c27d53dfca707db7789a75235bbfcfffc8 100644 (file)
@@ -50,7 +50,7 @@ depend on how your build is configured.  You can expect to find
 these binary outputs:\r
 * OVMF.FD\r
   - Please note!  This filename has changed.  Older releases used OVMF.Fv.\r
-* CirrusLogic5446.rom\r
+* OvmfVideo.rom\r
 \r
 More information on building OVMF can be found at:\r
 \r
@@ -60,7 +60,7 @@ http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=How_to_build_OVM
 \r
 * QEMU 0.9.1 or later is required.\r
 * Either copy, rename or symlink OVMF.FD => bios.bin\r
-* Either copy, rename or symlink CirrusLogic5446.rom => vgabios-cirrus.bin\r
+* Either copy, rename or symlink OvmfVideo.rom => vgabios-cirrus.bin\r
 * Be sure to use qemu-system-x86_64, if you are using and X64 firmware.\r
   (qemu-system-x86_64 works for the IA32 firmware as well, of course.)\r
 * Use the QEMU -L parameter to specify the directory where the bios.bin\r
index 66774244a320dc8a73f9e410c541e1af1393bc22..508c091937468cc15a4cccbc6ccd0f33833b0a79 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/python\r
 #\r
-# Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>\r
+# Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>\r
 #\r
 # This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
@@ -227,7 +227,7 @@ def create_zip(arch):
         'FV'\r
         )\r
     zipf.write(os.path.join(FV_DIR, 'OVMF.fd'), 'OVMF.fd')\r
-    zipf.write(os.path.join(FV_DIR, 'CirrusLogic5446.rom'), 'CirrusLogic5446.rom')\r
+    zipf.write(os.path.join(FV_DIR, 'OvmfVideo.rom'), 'OvmfVideo.rom')\r
     zipf.close()\r
     print '[done]'\r
 \r