diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-07-09 23:59:35 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-07-09 23:59:35 +0000 |
commit | 951d3095d8f1bea828b1dbb07c053ce124f9a369 (patch) | |
tree | d60201c971c2b0e86aefff8af1049529f09576d4 /DuetPkg | |
parent | 9a6b4de21d53c3acf85e1948bf0d3a5e5576172c (diff) | |
download | edk2-platforms-951d3095d8f1bea828b1dbb07c053ce124f9a369.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@8850 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg')
-rw-r--r-- | DuetPkg/Library/DuetBdsLib/BdsPlatform.c | 17 | ||||
-rw-r--r-- | DuetPkg/Library/DuetBdsLib/PlatformBds.inf | 1 |
2 files changed, 0 insertions, 18 deletions
diff --git a/DuetPkg/Library/DuetBdsLib/BdsPlatform.c b/DuetPkg/Library/DuetBdsLib/BdsPlatform.c index d063faa61c..acf6abb073 100644 --- a/DuetPkg/Library/DuetBdsLib/BdsPlatform.c +++ b/DuetPkg/Library/DuetBdsLib/BdsPlatform.c @@ -24,7 +24,6 @@ Abstract: #define IS_PCI_ISA_PDECODE(_p) IS_CLASS3 (_p, PCI_CLASS_BRIDGE, PCI_CLASS_BRIDGE_ISA_PDECODE, 0)
-CHAR16 mFirmwareVendor[] = L"TianoCore.org";
extern BOOLEAN gConnectAllHappened;
extern USB_CLASS_FORMAT_DEVICE_PATH gUsbClassKeyboardDevicePath;
@@ -414,22 +413,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);
-
GetSystemTablesFromHob ();
UpdateMemoryMap ();
diff --git a/DuetPkg/Library/DuetBdsLib/PlatformBds.inf b/DuetPkg/Library/DuetBdsLib/PlatformBds.inf index a2f762c00b..167467107d 100644 --- a/DuetPkg/Library/DuetBdsLib/PlatformBds.inf +++ b/DuetPkg/Library/DuetBdsLib/PlatformBds.inf @@ -54,7 +54,6 @@ DevicePathLib
[Guids]
- gEfiDefaultBmpLogoGuid
gEfiGlobalVariableGuid
gEfiPciExpressBaseAddressGuid
gEfiAcpi20TableGuid
|