diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-07-10 00:03:30 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-07-10 00:03:30 +0000 |
commit | 83c4704cf91e8de240bf2aff8223e2b0ec80b0cc (patch) | |
tree | fb4fddc9922dfeafb498c0e77d3ab254a3a673f3 /Nt32Pkg/Library/Nt32BdsLib | |
parent | 951d3095d8f1bea828b1dbb07c053ce124f9a369 (diff) | |
download | edk2-platforms-83c4704cf91e8de240bf2aff8223e2b0ec80b0cc.tar.xz |
Remove code that fills in the FirmwareVendor and FirmwareRevision in the EFI System Table and depend on BdsDxe in the IntelFrameworkModulePkg to do this instead.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8851 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg/Library/Nt32BdsLib')
-rw-r--r-- | Nt32Pkg/Library/Nt32BdsLib/BdsPlatform.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Nt32Pkg/Library/Nt32BdsLib/BdsPlatform.c b/Nt32Pkg/Library/Nt32BdsLib/BdsPlatform.c index 34fd46ee59..73d96e75e2 100644 --- a/Nt32Pkg/Library/Nt32BdsLib/BdsPlatform.c +++ b/Nt32Pkg/Library/Nt32BdsLib/BdsPlatform.c @@ -22,7 +22,6 @@ Abstract: #include "BdsPlatform.h"
-CHAR16 mFirmwareVendor[] = L"TianoCore.org";
WIN_NT_SYSTEM_CONFIGURATION mSystemConfigData;
VOID
@@ -85,22 +84,6 @@ Returns: --*/
{
- //
- // set firmwarevendor, here can be IBV/OEM customize
- //
- gST->FirmwareVendor = AllocateRuntimeCopyPool (
- sizeof (mFirmwareVendor),
- &mFirmwareVendor
- );
- ASSERT (gST->FirmwareVendor != NULL);
-
- gST->FirmwareRevision = 0;
-
- //
- // Fixup Tasble CRC after we updated Firmware Vendor and Revision
- //
- gBS->CalculateCrc32 ((VOID *) gST, sizeof (EFI_SYSTEM_TABLE), &gST->Hdr.CRC32);
-
SetupVariableInit ();
}
|