diff options
-rw-r--r-- | OvmfPkg/README | 1 | ||||
-rwxr-xr-x | OvmfPkg/create-release.py | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/OvmfPkg/README b/OvmfPkg/README index 8db4cac0dc..0c0a81a670 100644 --- a/OvmfPkg/README +++ b/OvmfPkg/README @@ -52,6 +52,7 @@ these binary outputs: * OVMF.FD
- Please note! This filename has changed. Older releases used OVMF.Fv.
* OvmfVideo.rom
+ - This file is not built separately any longer, starting with svn r13520.
More information on building OVMF can be found at:
diff --git a/OvmfPkg/create-release.py b/OvmfPkg/create-release.py index 508c091937..6a6017a9f2 100755 --- a/OvmfPkg/create-release.py +++ b/OvmfPkg/create-release.py @@ -227,7 +227,6 @@ def create_zip(arch): 'FV'
)
zipf.write(os.path.join(FV_DIR, 'OVMF.fd'), 'OVMF.fd')
- zipf.write(os.path.join(FV_DIR, 'OvmfVideo.rom'), 'OvmfVideo.rom')
zipf.close()
print '[done]'
|