Vlv2TbltDevicePkg: ECP Cleanup.
Remove modules of EdkCompatibilityPkg from DSC/FDF of Vlv2TbltDevicePkg to make this platform ECP free. Test: Boot to 64-bit Windows 10. Cc: Zailiang Sun <zailiang.sun@intel.com> Cc: Yi Qian <yi.qian@intel.com> Cc: Michael Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: David Wei <david.wei@intel.com>
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
/** @file
|
/** @file
|
||||||
|
|
||||||
Copyright (c) 2004 - 2016, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||||
|
|
||||||
|
|
||||||
This program and the accompanying materials are licensed and made available under
|
This program and the accompanying materials are licensed and made available under
|
||||||
@ -35,7 +35,7 @@ Abstract:
|
|||||||
|
|
||||||
#include <PiDxe.h>
|
#include <PiDxe.h>
|
||||||
#include <Protocol/TcgService.h>
|
#include <Protocol/TcgService.h>
|
||||||
#include <Protocol/FirmwareVolume.h>
|
#include <Protocol/FirmwareVolume2.h>
|
||||||
#include "AcpiPlatform.h"
|
#include "AcpiPlatform.h"
|
||||||
#include "AcpiPlatformHooks.h"
|
#include "AcpiPlatformHooks.h"
|
||||||
#include "AcpiPlatformHooksLib.h"
|
#include "AcpiPlatformHooksLib.h"
|
||||||
@ -785,7 +785,7 @@ AcpiPlatformEntryPoint (
|
|||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
EFI_STATUS AcpiStatus;
|
EFI_STATUS AcpiStatus;
|
||||||
EFI_ACPI_SUPPORT_PROTOCOL *AcpiSupport;
|
EFI_ACPI_SUPPORT_PROTOCOL *AcpiSupport;
|
||||||
EFI_FIRMWARE_VOLUME_PROTOCOL *FwVol;
|
EFI_FIRMWARE_VOLUME2_PROTOCOL *FwVol;
|
||||||
INTN Instance;
|
INTN Instance;
|
||||||
EFI_ACPI_COMMON_HEADER *CurrentTable;
|
EFI_ACPI_COMMON_HEADER *CurrentTable;
|
||||||
UINTN TableHandle;
|
UINTN TableHandle;
|
||||||
@ -856,7 +856,7 @@ AcpiPlatformEntryPoint (
|
|||||||
//
|
//
|
||||||
// Locate the firmware volume protocol.
|
// Locate the firmware volume protocol.
|
||||||
//
|
//
|
||||||
Status = LocateSupportProtocol (&gEfiFirmwareVolumeProtocolGuid, (VOID **) &FwVol, 1);
|
Status = LocateSupportProtocol (&gEfiFirmwareVolume2ProtocolGuid, (VOID **) &FwVol, 1);
|
||||||
ASSERT_EFI_ERROR (Status);
|
ASSERT_EFI_ERROR (Status);
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved
|
# Copyright (c) 1999 - 2018, Intel Corporation. All rights reserved
|
||||||
#
|
#
|
||||||
|
|
||||||
# This program and the accompanying materials are licensed and made available under
|
# This program and the accompanying materials are licensed and made available under
|
||||||
@ -77,7 +77,7 @@
|
|||||||
[Protocols]
|
[Protocols]
|
||||||
gEfiAcpiTableProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
gEfiAcpiTableProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
||||||
gEnhancedSpeedstepProtocolGuid
|
gEnhancedSpeedstepProtocolGuid
|
||||||
gEfiPlatformCpuProtocolGuid
|
gEfiPlatformCpuProtocolGuid
|
||||||
gEfiAcpiSupportProtocolGuid
|
gEfiAcpiSupportProtocolGuid
|
||||||
gEfiAcpiS3SaveProtocolGuid
|
gEfiAcpiS3SaveProtocolGuid
|
||||||
gEfiCpuIoProtocolGuid
|
gEfiCpuIoProtocolGuid
|
||||||
|
@ -36,7 +36,7 @@ Abstract:
|
|||||||
#include "PlatformBootMode.h"
|
#include "PlatformBootMode.h"
|
||||||
|
|
||||||
#include <Library/BaseLib.h>
|
#include <Library/BaseLib.h>
|
||||||
#include <Library/BaseMemoryLib.h>
|
#include <Library/BaseMemoryLib.h>
|
||||||
#include <Protocol/CpuIo.h>
|
#include <Protocol/CpuIo.h>
|
||||||
#include <Protocol/PciIo.h>
|
#include <Protocol/PciIo.h>
|
||||||
#include <Guid/SetupVariable.h>
|
#include <Guid/SetupVariable.h>
|
||||||
@ -66,12 +66,12 @@ GetRawImage (
|
|||||||
|
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
GetRawImage (
|
GetRawImage (
|
||||||
IN EFI_GUID *NameGuid,
|
IN EFI_GUID *NameGuid,
|
||||||
IN OUT VOID **Buffer,
|
IN OUT VOID **Buffer,
|
||||||
IN OUT UINTN *Size
|
IN OUT UINTN *Size
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
EFI_HANDLE *HandleBuffer;
|
EFI_HANDLE *HandleBuffer;
|
||||||
UINTN HandleCount;
|
UINTN HandleCount;
|
||||||
UINTN Index;
|
UINTN Index;
|
||||||
@ -86,7 +86,7 @@ GetRawImage (
|
|||||||
&HandleBuffer
|
&HandleBuffer
|
||||||
);
|
);
|
||||||
if (EFI_ERROR (Status) || HandleCount == 0) {
|
if (EFI_ERROR (Status) || HandleCount == 0) {
|
||||||
return EFI_NOT_FOUND;
|
return EFI_NOT_FOUND;
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#/*++
|
#/*++
|
||||||
#
|
#
|
||||||
# Copyright (c) 2003 - 2014, Intel Corporation. All rights reserved
|
# Copyright (c) 2003 - 2018, Intel Corporation. All rights reserved
|
||||||
#
|
#
|
||||||
|
|
||||||
# This program and the accompanying materials are licensed and made available under
|
# This program and the accompanying materials are licensed and made available under
|
||||||
@ -42,7 +42,7 @@
|
|||||||
[sources.common]
|
[sources.common]
|
||||||
BoardPciPlatform.c
|
BoardPciPlatform.c
|
||||||
PciPlatform.c
|
PciPlatform.c
|
||||||
PciPlatform.h
|
PciPlatform.h
|
||||||
|
|
||||||
[Guids]
|
[Guids]
|
||||||
gEfiNormalSetupGuid
|
gEfiNormalSetupGuid
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/** @file
|
/** @file
|
||||||
|
|
||||||
Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||||
|
|
||||||
|
|
||||||
This program and the accompanying materials are licensed and made available under
|
This program and the accompanying materials are licensed and made available under
|
||||||
@ -29,8 +29,6 @@ Abstract:
|
|||||||
|
|
||||||
EFI PEIM to provide the platform support functionality on the Thurley.
|
EFI PEIM to provide the platform support functionality on the Thurley.
|
||||||
|
|
||||||
|
|
||||||
--*/
|
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
#include "CommonHeader.h"
|
#include "CommonHeader.h"
|
||||||
@ -100,56 +98,6 @@ CapsulePpiNotifyCallback (
|
|||||||
if (Status == EFI_SUCCESS) {
|
if (Status == EFI_SUCCESS) {
|
||||||
if (Capsule->CheckCapsuleUpdate ((EFI_PEI_SERVICES**)PeiServices) == EFI_SUCCESS) {
|
if (Capsule->CheckCapsuleUpdate ((EFI_PEI_SERVICES**)PeiServices) == EFI_SUCCESS) {
|
||||||
BootMode = BOOT_ON_FLASH_UPDATE;
|
BootMode = BOOT_ON_FLASH_UPDATE;
|
||||||
Status = (*PeiServices)->SetBootMode((const EFI_PEI_SERVICES **)PeiServices, BootMode);
|
|
||||||
ASSERT_EFI_ERROR (Status);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return Status;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Check CMOS register bit to determine if previous boot was successful
|
|
||||||
|
|
||||||
@param PeiServices pointer to the PEI Service Table
|
|
||||||
|
|
||||||
@retval TRUE - Previous Boot was success
|
|
||||||
@retval FALSE - Previous Boot wasn't success
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
IsPreviousBootSuccessful(
|
|
||||||
IN CONST EFI_PEI_SERVICES **PeiServices
|
|
||||||
|
|
||||||
)
|
|
||||||
{
|
|
||||||
EFI_STATUS Status;
|
|
||||||
BOOLEAN BootState;
|
|
||||||
UINTN DataSize;
|
|
||||||
CHAR16 VarName[] = BOOT_STATE_VARIABLE_NAME;
|
|
||||||
EFI_PEI_READ_ONLY_VARIABLE2_PPI *PeiVar;
|
|
||||||
|
|
||||||
Status = (**PeiServices).LocatePpi (
|
|
||||||
PeiServices,
|
|
||||||
&gEfiPeiReadOnlyVariable2PpiGuid,
|
|
||||||
0,
|
|
||||||
NULL,
|
|
||||||
(void **)&PeiVar
|
|
||||||
);
|
|
||||||
ASSERT_EFI_ERROR (Status);
|
|
||||||
|
|
||||||
//
|
|
||||||
// Get last Boot State Variable to confirm that it is not a first boot .
|
|
||||||
//
|
|
||||||
|
|
||||||
DataSize = sizeof (BOOLEAN);
|
|
||||||
Status = PeiVar->GetVariable (
|
|
||||||
PeiVar,
|
|
||||||
VarName,
|
|
||||||
&gEfiBootStateGuid,
|
|
||||||
NULL,
|
|
||||||
&DataSize,
|
|
||||||
Status = (*PeiServices)->SetBootMode((const EFI_PEI_SERVICES **)PeiServices, BootMode);
|
Status = (*PeiServices)->SetBootMode((const EFI_PEI_SERVICES **)PeiServices, BootMode);
|
||||||
ASSERT_EFI_ERROR (Status);
|
ASSERT_EFI_ERROR (Status);
|
||||||
}
|
}
|
||||||
@ -190,7 +138,7 @@ UpdateBootMode (
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case V_PCH_ACPI_PM1_CNT_S4:
|
case V_PCH_ACPI_PM1_CNT_S4:
|
||||||
BootMode = BOOT_ON_S4_RESUME;
|
BootMode = BOOT_ON_S4_RESUME;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case V_PCH_ACPI_PM1_CNT_S5:
|
case V_PCH_ACPI_PM1_CNT_S5:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved
|
# Copyright (c) 1999 - 2018, Intel Corporation. All rights reserved
|
||||||
#
|
#
|
||||||
|
|
||||||
# This program and the accompanying materials are licensed and made available under
|
# This program and the accompanying materials are licensed and made available under
|
||||||
@ -74,7 +74,6 @@
|
|||||||
BootMode.c
|
BootMode.c
|
||||||
|
|
||||||
|
|
||||||
[Packages]
|
|
||||||
[Packages]
|
[Packages]
|
||||||
MdePkg/MdePkg.dec
|
MdePkg/MdePkg.dec
|
||||||
MdeModulePkg/MdeModulePkg.dec
|
MdeModulePkg/MdeModulePkg.dec
|
||||||
@ -121,7 +120,6 @@
|
|||||||
[Guids]
|
[Guids]
|
||||||
gEfiSetupVariableGuid
|
gEfiSetupVariableGuid
|
||||||
gEfiPlatformInfoGuid
|
gEfiPlatformInfoGuid
|
||||||
gEfiPlatformBootModeGuid
|
|
||||||
gEfiPlatformBootModeGuid
|
gEfiPlatformBootModeGuid
|
||||||
gEfiPlatformCpuInfoGuid
|
gEfiPlatformCpuInfoGuid
|
||||||
gEfiGlobalVariableGuid
|
gEfiGlobalVariableGuid
|
||||||
|
@ -316,7 +316,6 @@ INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET
|
|||||||
INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PeiSmmControl.inf
|
INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PeiSmmControl.inf
|
||||||
INF UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
INF UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
||||||
INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/MpS3.inf
|
INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/MpS3.inf
|
||||||
INF EdkCompatibilityPkg/Compatibility/AcpiVariableHobOnSmramReserveHobThunk/AcpiVariableHobOnSmramReserveHobThunk.inf
|
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
# INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PiSmmCommunicationPei.inf
|
# INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PiSmmCommunicationPei.inf
|
||||||
@ -679,15 +678,7 @@ INF MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
|
|||||||
INF MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
|
INF MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
#
|
|
||||||
# ECP
|
|
||||||
#
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/LegacyRegion2OnLegacyRegionThunk/LegacyRegion2OnLegacyRegionThunk.inf
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/SmmBaseOnSmmBase2Thunk/SmmBaseOnSmmBase2Thunk.inf
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/SmmBaseHelper/SmmBaseHelper.inf
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/SmmAccess2OnSmmAccessThunk/SmmAccess2OnSmmAccessThunk.inf
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/SmmControl2OnSmmControlThunk/SmmControl2OnSmmControlThunk.inf
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/FvOnFv2Thunk/FvOnFv2Thunk.inf
|
|
||||||
#
|
#
|
||||||
# SMBIOS
|
# SMBIOS
|
||||||
#
|
#
|
||||||
|
@ -272,7 +272,6 @@ INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET
|
|||||||
INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PeiSmmControl.inf
|
INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PeiSmmControl.inf
|
||||||
INF UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
INF UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
||||||
INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/MpS3.inf
|
INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/MpS3.inf
|
||||||
INF EdkCompatibilityPkg/Compatibility/AcpiVariableHobOnSmramReserveHobThunk/AcpiVariableHobOnSmramReserveHobThunk.inf
|
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
# INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PiSmmCommunicationPei.inf
|
# INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PiSmmCommunicationPei.inf
|
||||||
@ -635,15 +634,6 @@ INF MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
|
|||||||
INF MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
|
INF MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
#
|
|
||||||
# ECP
|
|
||||||
#
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/LegacyRegion2OnLegacyRegionThunk/LegacyRegion2OnLegacyRegionThunk.inf
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/SmmBaseOnSmmBase2Thunk/SmmBaseOnSmmBase2Thunk.inf
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/SmmBaseHelper/SmmBaseHelper.inf
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/SmmAccess2OnSmmAccessThunk/SmmAccess2OnSmmAccessThunk.inf
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/SmmControl2OnSmmControlThunk/SmmControl2OnSmmControlThunk.inf
|
|
||||||
INF EdkCompatibilityPkg/Compatibility/FvOnFv2Thunk/FvOnFv2Thunk.inf
|
|
||||||
#
|
#
|
||||||
# SMBIOS
|
# SMBIOS
|
||||||
#
|
#
|
||||||
|
@ -195,7 +195,6 @@
|
|||||||
PlatformFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
PlatformFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
||||||
MicrocodeFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
MicrocodeFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
||||||
DisplayUpdateProgressLib|MdeModulePkg/Library/DisplayUpdateProgressLibGraphics/DisplayUpdateProgressLibGraphics.inf
|
DisplayUpdateProgressLib|MdeModulePkg/Library/DisplayUpdateProgressLibGraphics/DisplayUpdateProgressLibGraphics.inf
|
||||||
LanguageLib|EdkCompatibilityPkg/Compatibility/Library/UefiLanguageLib/UefiLanguageLib.inf
|
|
||||||
SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
||||||
SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
||||||
IoApicLib|PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf
|
IoApicLib|PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf
|
||||||
@ -475,79 +474,6 @@
|
|||||||
DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
#
|
|
||||||
# Library Section - list of all EDK/Framework libraries
|
|
||||||
#
|
|
||||||
################################################################################
|
|
||||||
[Libraries.common]
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/BaseLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/BaseMemoryLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePrintLib/BasePrintLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciCf8Lib/BasePciCf8Lib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciExpressLib/BasePciExpressLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciLibCf8/BasePciLibCf8.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciLibPciExpress/BasePciLibPciExpress.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePeCoffLib/BasePeCoffLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/SmmRuntimeDxeReportStatusCodeLib/SmmRuntimeDxeReportStatusCodeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiHobLib/PeiHobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Ppi/EdkPpiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/PeiLib.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/Library/UefiLanguageLib/UefiLanguageLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Guid/EdkGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Efi/Protocol/EfiProtocolLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/EfiDriverLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Protocol/EdkProtocolLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Protocol/EdkFrameworkProtocolLib.inf
|
|
||||||
[Libraries.IA32]
|
|
||||||
EdkCompatibilityPkg/Foundation/Efi/Guid/EfiGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Guid/EdkFrameworkGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/EfiCommonLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/CpuIA32Lib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/CompilerStub/CompilerStubLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Ppi/EdkFrameworkPpiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Pei/Hob/PeiHobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiServicesTablePointerLibMm7/PeiServicesTablePointerLibMm7.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiServicesLib/PeiServicesLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/ArchProtocolLib.inf
|
|
||||||
|
|
||||||
$(PLATFORM_PACKAGE)/Library/MultiPlatformLib/MultiPlatformLib.inf
|
|
||||||
[Libraries.X64]
|
|
||||||
|
|
||||||
EdkCompatibilityPkg/Foundation/Efi/Guid/EfiGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Guid/EdkFrameworkGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/EfiCommonLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/CpuIA32Lib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/CompilerStub/CompilerStubLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Ppi/EdkFrameworkPpiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/ArchProtocolLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/Hob/HobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/EfiRuntimeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/EfiIfrSupportLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/Print/PrintLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/EfiScriptLib/EfiScriptLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/PrintLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/Graphics.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/UefiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeHobLib/DxeHobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/HiiLib/HiiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDriverModelLib/UefiDriverModelLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/EdkDxeRuntimeDriverLib/EdkDxeRuntimeDriverLib.inf
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
#
|
#
|
||||||
# Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
# Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
||||||
@ -865,7 +791,6 @@
|
|||||||
[PcdsDynamicHii.common.DEFAULT]
|
[PcdsDynamicHii.common.DEFAULT]
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|5 # Variable: L"Timeout"
|
gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|5 # Variable: L"Timeout"
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdHardwareErrorRecordLevel|L"HwErrRecSupport"|gEfiGlobalVariableGuid|0x0|1 # Variable: L"HwErrRecSupport"
|
gEfiMdePkgTokenSpaceGuid.PcdHardwareErrorRecordLevel|L"HwErrRecSupport"|gEfiGlobalVariableGuid|0x0|1 # Variable: L"HwErrRecSupport"
|
||||||
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdBootState|L"BootState"|gEfiBootStateGuid|0x0|TRUE
|
|
||||||
|
|
||||||
[PcdsDynamicDefault.common.DEFAULT]
|
[PcdsDynamicDefault.common.DEFAULT]
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdS3BootScriptTablePrivateDataPtr|0x0
|
gEfiMdeModulePkgTokenSpaceGuid.PcdS3BootScriptTablePrivateDataPtr|0x0
|
||||||
@ -1048,7 +973,6 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
|||||||
UefiCpuPkg/CpuIoPei/CpuIoPei.inf
|
UefiCpuPkg/CpuIoPei/CpuIoPei.inf
|
||||||
UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
||||||
$(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/MpS3.inf
|
$(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/MpS3.inf
|
||||||
EdkCompatibilityPkg/Compatibility/AcpiVariableHobOnSmramReserveHobThunk/AcpiVariableHobOnSmramReserveHobThunk.inf
|
|
||||||
# $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PiSmmCommunicationPei.inf
|
# $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PiSmmCommunicationPei.inf
|
||||||
|
|
||||||
!if $(RECOVERY_ENABLE)
|
!if $(RECOVERY_ENABLE)
|
||||||
@ -1496,17 +1420,6 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
|||||||
|
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
#
|
|
||||||
# ECP
|
|
||||||
#
|
|
||||||
EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/FrameworkHiiOnUefiHiiThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/LegacyRegion2OnLegacyRegionThunk/LegacyRegion2OnLegacyRegionThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmBaseOnSmmBase2Thunk/SmmBaseOnSmmBase2Thunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmBaseHelper/SmmBaseHelper.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmAccess2OnSmmAccessThunk/SmmAccess2OnSmmAccessThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmControl2OnSmmControlThunk/SmmControl2OnSmmControlThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/FrameworkSmmStatusCodeOnPiSmmStatusCodeThunk/FrameworkSmmStatusCodeOnPiSmmStatusCodeThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/FvOnFv2Thunk/FvOnFv2Thunk.inf
|
|
||||||
#
|
#
|
||||||
# SMBIOS
|
# SMBIOS
|
||||||
#
|
#
|
||||||
|
@ -195,7 +195,6 @@
|
|||||||
PlatformFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
PlatformFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
||||||
MicrocodeFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
MicrocodeFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
||||||
DisplayUpdateProgressLib|MdeModulePkg/Library/DisplayUpdateProgressLibGraphics/DisplayUpdateProgressLibGraphics.inf
|
DisplayUpdateProgressLib|MdeModulePkg/Library/DisplayUpdateProgressLibGraphics/DisplayUpdateProgressLibGraphics.inf
|
||||||
LanguageLib|EdkCompatibilityPkg/Compatibility/Library/UefiLanguageLib/UefiLanguageLib.inf
|
|
||||||
SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
||||||
SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
||||||
IoApicLib|PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf
|
IoApicLib|PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf
|
||||||
@ -283,6 +282,8 @@
|
|||||||
!endif
|
!endif
|
||||||
ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
|
ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
|
||||||
ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
|
ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
|
||||||
|
ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
|
||||||
|
HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
|
||||||
FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
||||||
SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
|
SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
|
||||||
!if $(FTPM_ENABLE) == TRUE || $(NETWORK_ISCSI_ENABLE) == TRUE
|
!if $(FTPM_ENABLE) == TRUE || $(NETWORK_ISCSI_ENABLE) == TRUE
|
||||||
@ -475,79 +476,6 @@
|
|||||||
DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
#
|
|
||||||
# Library Section - list of all EDK/Framework libraries
|
|
||||||
#
|
|
||||||
################################################################################
|
|
||||||
[Libraries.common]
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/BaseLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/BaseMemoryLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePrintLib/BasePrintLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciCf8Lib/BasePciCf8Lib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciExpressLib/BasePciExpressLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciLibCf8/BasePciLibCf8.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciLibPciExpress/BasePciLibPciExpress.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePeCoffLib/BasePeCoffLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/SmmRuntimeDxeReportStatusCodeLib/SmmRuntimeDxeReportStatusCodeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiHobLib/PeiHobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Ppi/EdkPpiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/PeiLib.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/Library/UefiLanguageLib/UefiLanguageLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Guid/EdkGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Efi/Protocol/EfiProtocolLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/EfiDriverLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Protocol/EdkProtocolLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Protocol/EdkFrameworkProtocolLib.inf
|
|
||||||
[Libraries.IA32]
|
|
||||||
EdkCompatibilityPkg/Foundation/Efi/Guid/EfiGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Guid/EdkFrameworkGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/EfiCommonLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/CpuIA32Lib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/CompilerStub/CompilerStubLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Ppi/EdkFrameworkPpiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Pei/Hob/PeiHobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiServicesTablePointerLibMm7/PeiServicesTablePointerLibMm7.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiServicesLib/PeiServicesLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/ArchProtocolLib.inf
|
|
||||||
|
|
||||||
$(PLATFORM_PACKAGE)/Library/MultiPlatformLib/MultiPlatformLib.inf
|
|
||||||
[Libraries.IA32]
|
|
||||||
|
|
||||||
EdkCompatibilityPkg/Foundation/Efi/Guid/EfiGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Guid/EdkFrameworkGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/EfiCommonLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/CpuIA32Lib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/CompilerStub/CompilerStubLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Ppi/EdkFrameworkPpiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/ArchProtocolLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/Hob/HobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/EfiRuntimeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/EfiIfrSupportLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/Print/PrintLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/EfiScriptLib/EfiScriptLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/PrintLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/Graphics.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/UefiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeHobLib/DxeHobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/HiiLib/HiiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDriverModelLib/UefiDriverModelLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/EdkDxeRuntimeDriverLib/EdkDxeRuntimeDriverLib.inf
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
#
|
#
|
||||||
# Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
# Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
||||||
@ -865,7 +793,6 @@
|
|||||||
[PcdsDynamicHii.common.DEFAULT]
|
[PcdsDynamicHii.common.DEFAULT]
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|5 # Variable: L"Timeout"
|
gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|5 # Variable: L"Timeout"
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdHardwareErrorRecordLevel|L"HwErrRecSupport"|gEfiGlobalVariableGuid|0x0|1 # Variable: L"HwErrRecSupport"
|
gEfiMdePkgTokenSpaceGuid.PcdHardwareErrorRecordLevel|L"HwErrRecSupport"|gEfiGlobalVariableGuid|0x0|1 # Variable: L"HwErrRecSupport"
|
||||||
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdBootState|L"BootState"|gEfiBootStateGuid|0x0|TRUE
|
|
||||||
|
|
||||||
[PcdsDynamicDefault.common.DEFAULT]
|
[PcdsDynamicDefault.common.DEFAULT]
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdS3BootScriptTablePrivateDataPtr|0x0
|
gEfiMdeModulePkgTokenSpaceGuid.PcdS3BootScriptTablePrivateDataPtr|0x0
|
||||||
@ -1048,7 +975,6 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
|||||||
UefiCpuPkg/CpuIoPei/CpuIoPei.inf
|
UefiCpuPkg/CpuIoPei/CpuIoPei.inf
|
||||||
UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
||||||
$(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/MpS3.inf
|
$(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/MpS3.inf
|
||||||
EdkCompatibilityPkg/Compatibility/AcpiVariableHobOnSmramReserveHobThunk/AcpiVariableHobOnSmramReserveHobThunk.inf
|
|
||||||
# $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PiSmmCommunicationPei.inf
|
# $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PiSmmCommunicationPei.inf
|
||||||
|
|
||||||
!if $(RECOVERY_ENABLE)
|
!if $(RECOVERY_ENABLE)
|
||||||
@ -1484,17 +1410,6 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
|||||||
|
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
#
|
|
||||||
# ECP
|
|
||||||
#
|
|
||||||
EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/FrameworkHiiOnUefiHiiThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/LegacyRegion2OnLegacyRegionThunk/LegacyRegion2OnLegacyRegionThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmBaseOnSmmBase2Thunk/SmmBaseOnSmmBase2Thunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmBaseHelper/SmmBaseHelper.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmAccess2OnSmmAccessThunk/SmmAccess2OnSmmAccessThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmControl2OnSmmControlThunk/SmmControl2OnSmmControlThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/FrameworkSmmStatusCodeOnPiSmmStatusCodeThunk/FrameworkSmmStatusCodeOnPiSmmStatusCodeThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/FvOnFv2Thunk/FvOnFv2Thunk.inf
|
|
||||||
#
|
#
|
||||||
# SMBIOS
|
# SMBIOS
|
||||||
#
|
#
|
||||||
@ -1538,9 +1453,9 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
|||||||
MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
|
MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
|
||||||
MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
|
MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
|
||||||
MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
|
MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
|
||||||
MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
|
|
||||||
NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf
|
NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf
|
||||||
NetworkPkg/TcpDxe/TcpDxe.inf
|
NetworkPkg/TcpDxe/TcpDxe.inf
|
||||||
|
MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
|
||||||
!if $(NETWORK_IP6_ENABLE) == TRUE
|
!if $(NETWORK_IP6_ENABLE) == TRUE
|
||||||
NetworkPkg/Ip6Dxe/Ip6Dxe.inf
|
NetworkPkg/Ip6Dxe/Ip6Dxe.inf
|
||||||
NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf
|
NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf
|
||||||
|
@ -195,7 +195,6 @@
|
|||||||
PlatformFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
PlatformFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
||||||
MicrocodeFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
MicrocodeFlashAccessLib|Vlv2TbltDevicePkg/Feature/Capsule/Library/PlatformFlashAccessLib/PlatformFlashAccessLib.inf
|
||||||
DisplayUpdateProgressLib|MdeModulePkg/Library/DisplayUpdateProgressLibGraphics/DisplayUpdateProgressLibGraphics.inf
|
DisplayUpdateProgressLib|MdeModulePkg/Library/DisplayUpdateProgressLibGraphics/DisplayUpdateProgressLibGraphics.inf
|
||||||
LanguageLib|EdkCompatibilityPkg/Compatibility/Library/UefiLanguageLib/UefiLanguageLib.inf
|
|
||||||
SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
|
||||||
SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
|
||||||
IoApicLib|PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf
|
IoApicLib|PcAtChipsetPkg/Library/BaseIoApicLib/BaseIoApicLib.inf
|
||||||
@ -477,79 +476,6 @@
|
|||||||
DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
#
|
|
||||||
# Library Section - list of all EDK/Framework libraries
|
|
||||||
#
|
|
||||||
################################################################################
|
|
||||||
[Libraries.common]
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/BaseLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/BaseMemoryLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePrintLib/BasePrintLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseDebugLibNull/BaseDebugLibNull.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciCf8Lib/BasePciCf8Lib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciExpressLib/BasePciExpressLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciLibCf8/BasePciLibCf8.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePciLibPciExpress/BasePciLibPciExpress.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePeCoffLib/BasePeCoffLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/SmmRuntimeDxeReportStatusCodeLib/SmmRuntimeDxeReportStatusCodeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiHobLib/PeiHobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Ppi/EdkPpiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/PeiLib.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/Library/UefiLanguageLib/UefiLanguageLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Guid/EdkGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Efi/Protocol/EfiProtocolLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/EfiDriverLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Protocol/EdkProtocolLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Protocol/EdkFrameworkProtocolLib.inf
|
|
||||||
[Libraries.IA32]
|
|
||||||
EdkCompatibilityPkg/Foundation/Efi/Guid/EfiGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Guid/EdkFrameworkGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/EfiCommonLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/CpuIA32Lib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/CompilerStub/CompilerStubLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Ppi/EdkFrameworkPpiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Pei/Hob/PeiHobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiServicesTablePointerLibMm7/PeiServicesTablePointerLibMm7.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiServicesLib/PeiServicesLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/ArchProtocolLib.inf
|
|
||||||
|
|
||||||
$(PLATFORM_PACKAGE)/Library/MultiPlatformLib/MultiPlatformLib.inf
|
|
||||||
[Libraries.X64]
|
|
||||||
|
|
||||||
EdkCompatibilityPkg/Foundation/Efi/Guid/EfiGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Guid/EdkFrameworkGuidLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/EfiCommonLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/CpuIA32Lib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/CompilerStub/CompilerStubLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Framework/Ppi/EdkFrameworkPpiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/ArchProtocolLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/Hob/HobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/EfiRuntimeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/EfiIfrSupportLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/Print/PrintLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/EfiScriptLib/EfiScriptLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/PrintLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/Graphics.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/UefiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeHobLib/DxeHobLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/HiiLib/HiiLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDevicePathLib/UefiDevicePathLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDriverModelLib/UefiDriverModelLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeServicesTableLib/DxeServicesTableLib.inf
|
|
||||||
EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/EdkDxeRuntimeDriverLib/EdkDxeRuntimeDriverLib.inf
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
#
|
#
|
||||||
# Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
# Pcd Section - list of all EDK II PCD Entries defined by this Platform
|
||||||
@ -867,7 +793,6 @@
|
|||||||
[PcdsDynamicHii.common.DEFAULT]
|
[PcdsDynamicHii.common.DEFAULT]
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|5 # Variable: L"Timeout"
|
gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|L"Timeout"|gEfiGlobalVariableGuid|0x0|5 # Variable: L"Timeout"
|
||||||
gEfiMdePkgTokenSpaceGuid.PcdHardwareErrorRecordLevel|L"HwErrRecSupport"|gEfiGlobalVariableGuid|0x0|1 # Variable: L"HwErrRecSupport"
|
gEfiMdePkgTokenSpaceGuid.PcdHardwareErrorRecordLevel|L"HwErrRecSupport"|gEfiGlobalVariableGuid|0x0|1 # Variable: L"HwErrRecSupport"
|
||||||
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdBootState|L"BootState"|gEfiBootStateGuid|0x0|TRUE
|
|
||||||
|
|
||||||
[PcdsDynamicDefault.common.DEFAULT]
|
[PcdsDynamicDefault.common.DEFAULT]
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdS3BootScriptTablePrivateDataPtr|0x0
|
gEfiMdeModulePkgTokenSpaceGuid.PcdS3BootScriptTablePrivateDataPtr|0x0
|
||||||
@ -1050,7 +975,6 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
|||||||
UefiCpuPkg/CpuIoPei/CpuIoPei.inf
|
UefiCpuPkg/CpuIoPei/CpuIoPei.inf
|
||||||
UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf
|
||||||
$(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/MpS3.inf
|
$(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/MpS3.inf
|
||||||
EdkCompatibilityPkg/Compatibility/AcpiVariableHobOnSmramReserveHobThunk/AcpiVariableHobOnSmramReserveHobThunk.inf
|
|
||||||
# $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PiSmmCommunicationPei.inf
|
# $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/PiSmmCommunicationPei.inf
|
||||||
|
|
||||||
!if $(RECOVERY_ENABLE)
|
!if $(RECOVERY_ENABLE)
|
||||||
@ -1498,17 +1422,6 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
|||||||
|
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
#
|
|
||||||
# ECP
|
|
||||||
#
|
|
||||||
EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/FrameworkHiiOnUefiHiiThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/LegacyRegion2OnLegacyRegionThunk/LegacyRegion2OnLegacyRegionThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmBaseOnSmmBase2Thunk/SmmBaseOnSmmBase2Thunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmBaseHelper/SmmBaseHelper.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmAccess2OnSmmAccessThunk/SmmAccess2OnSmmAccessThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/SmmControl2OnSmmControlThunk/SmmControl2OnSmmControlThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/FrameworkSmmStatusCodeOnPiSmmStatusCodeThunk/FrameworkSmmStatusCodeOnPiSmmStatusCodeThunk.inf
|
|
||||||
EdkCompatibilityPkg/Compatibility/FvOnFv2Thunk/FvOnFv2Thunk.inf
|
|
||||||
#
|
#
|
||||||
# SMBIOS
|
# SMBIOS
|
||||||
#
|
#
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved
|
# Copyright (c) 1999 - 2018, Intel Corporation. All rights reserved
|
||||||
#
|
#
|
||||||
|
|
||||||
# This program and the accompanying materials are licensed and made available under
|
# This program and the accompanying materials are licensed and made available under
|
||||||
@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
[Guids]
|
[Guids]
|
||||||
gEfiSetupVariableGuid
|
gEfiSetupVariableGuid
|
||||||
gDmiDataGuid
|
gDmiDataGuid
|
||||||
gEfiAcpiVariableCompatiblityGuid
|
gEfiAcpiVariableCompatiblityGuid
|
||||||
gEfiPciLanInfoGuid
|
gEfiPciLanInfoGuid
|
||||||
gEfiPciLanInfoGuid
|
gEfiPciLanInfoGuid
|
||||||
@ -86,7 +86,7 @@
|
|||||||
[Packages]
|
[Packages]
|
||||||
MdePkg/MdePkg.dec
|
MdePkg/MdePkg.dec
|
||||||
MdeModulePkg/MdeModulePkg.dec
|
MdeModulePkg/MdeModulePkg.dec
|
||||||
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
||||||
Vlv2DeviceRefCodePkg/Vlv2DeviceRefCodePkg.dec
|
Vlv2DeviceRefCodePkg/Vlv2DeviceRefCodePkg.dec
|
||||||
Vlv2TbltDevicePkg/PlatformPkg.dec
|
Vlv2TbltDevicePkg/PlatformPkg.dec
|
||||||
IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
/*++
|
/*++
|
||||||
|
|
||||||
Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved
|
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved
|
||||||
|
|
||||||
|
|
||||||
This program and the accompanying materials are licensed and made available under
|
This program and the accompanying materials are licensed and made available under
|
||||||
@ -48,7 +48,7 @@ Abstract:
|
|||||||
|
|
||||||
|
|
||||||
#include "IgdOpRegion.h"
|
#include "IgdOpRegion.h"
|
||||||
#include "VlvPlatformInit.h"
|
#include "VlvPlatformInit.h"
|
||||||
#include <FrameworkDxe.h>
|
#include <FrameworkDxe.h>
|
||||||
#include <Uefi.h>
|
#include <Uefi.h>
|
||||||
#include <PchRegs.h>
|
#include <PchRegs.h>
|
||||||
@ -135,7 +135,7 @@ GetIntegratedIntelVbtPtr (
|
|||||||
@exception EFI_UNSUPPORTED Invalid signature in VBT data.
|
@exception EFI_UNSUPPORTED Invalid signature in VBT data.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
GetIntegratedIntelVbtPtr (
|
GetIntegratedIntelVbtPtr (
|
||||||
OUT VBIOS_VBT_STRUCTURE **VbtFileBuffer
|
OUT VBIOS_VBT_STRUCTURE **VbtFileBuffer
|
||||||
)
|
)
|
||||||
@ -147,7 +147,7 @@ GetIntegratedIntelVbtPtr (
|
|||||||
EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
|
EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
|
||||||
UINTN Index;
|
UINTN Index;
|
||||||
UINT32 AuthenticationStatus;
|
UINT32 AuthenticationStatus;
|
||||||
|
|
||||||
UINT8 *Buffer;
|
UINT8 *Buffer;
|
||||||
UINTN VbtBufferSize = 0;
|
UINTN VbtBufferSize = 0;
|
||||||
|
|
||||||
@ -157,7 +157,7 @@ GetIntegratedIntelVbtPtr (
|
|||||||
Status = gBS->LocateHandleBuffer (
|
Status = gBS->LocateHandleBuffer (
|
||||||
ByProtocol,
|
ByProtocol,
|
||||||
&gEfiFirmwareVolume2ProtocolGuid,
|
&gEfiFirmwareVolume2ProtocolGuid,
|
||||||
NULL,
|
NULL,
|
||||||
&FvProtocolCount,
|
&FvProtocolCount,
|
||||||
&FvHandles
|
&FvHandles
|
||||||
);
|
);
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
#/*++
|
#/*++
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved
|
# Copyright (c) 1999 - 2018, Intel Corporation. All rights reserved
|
||||||
#
|
#
|
||||||
|
|
||||||
# This program and the accompanying materials are licensed and made available under
|
# This program and the accompanying materials are licensed and made available under
|
||||||
@ -65,7 +65,7 @@
|
|||||||
IoLib
|
IoLib
|
||||||
|
|
||||||
[Guids]
|
[Guids]
|
||||||
gBmpImageGuid
|
gBmpImageGuid
|
||||||
gEfiDxeServicesTableGuid
|
gEfiDxeServicesTableGuid
|
||||||
|
|
||||||
[Protocols]
|
[Protocols]
|
||||||
@ -74,6 +74,6 @@
|
|||||||
gIgdOpRegionProtocolGuid
|
gIgdOpRegionProtocolGuid
|
||||||
gEfiGlobalNvsAreaProtocolGuid
|
gEfiGlobalNvsAreaProtocolGuid
|
||||||
gEfiPciIoProtocolGuid
|
gEfiPciIoProtocolGuid
|
||||||
gEfiFirmwareVolumeProtocolGuid
|
gEfiFirmwareVolume2ProtocolGuid
|
||||||
gEfiCpuIoProtocolGuid
|
gEfiCpuIoProtocolGuid
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user