From f9841f04ad2d3ce1157103f97ef7c2bc5979f1de Mon Sep 17 00:00:00 2001 From: "Zeng, Star" Date: Thu, 28 Aug 2014 06:58:44 +0000 Subject: IntelFrameworkModulePkg: INF/DEC file updates to EDK II packages 1. Usage information in INF file comment blocks are either incomplete or incorrect. This includes usage information for Protocols/PPIs/GUIDs/PCDs/HOBs/Events/BootModes. The syntax for usage information in comment blocks is defined in the EDK II Module Information (INF) Specification Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Zeng, Star Reviewed-by: Gao, Liming git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15966 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Universal/Acpi/AcpiS3SaveDxe/AcpiS3SaveDxe.inf | 36 +++-- .../Acpi/AcpiSupportDxe/AcpiSupportDxe.inf | 28 ++-- .../Universal/BdsDxe/BdsDxe.inf | 168 ++++++++++++--------- .../Universal/Console/VgaClassDxe/VgaClassDxe.inf | 14 +- .../Universal/CpuIoDxe/CpuIoDxe.inf | 6 +- .../Universal/DataHubDxe/DataHubDxe.inf | 7 +- .../DataHubStdErrDxe/DataHubStdErrDxe.inf | 13 +- .../Universal/FirmwareVolume/FwVolDxe/FwVolDxe.inf | 15 +- .../UpdateDriverDxe/UpdateDriverDxe.inf | 11 +- .../Universal/LegacyRegionDxe/LegacyRegionDxe.inf | 8 +- .../SectionExtractionDxe/SectionExtractionDxe.inf | 13 +- .../DatahubStatusCodeHandlerDxe.inf | 19 +-- .../Universal/StatusCode/Pei/StatusCodePei.inf | 16 +- .../StatusCode/RuntimeDxe/StatusCodeRuntimeDxe.inf | 32 ++-- 14 files changed, 225 insertions(+), 161 deletions(-) (limited to 'IntelFrameworkModulePkg/Universal') diff --git a/IntelFrameworkModulePkg/Universal/Acpi/AcpiS3SaveDxe/AcpiS3SaveDxe.inf b/IntelFrameworkModulePkg/Universal/Acpi/AcpiS3SaveDxe/AcpiS3SaveDxe.inf index 9618dc2bae..c5dec0546a 100644 --- a/IntelFrameworkModulePkg/Universal/Acpi/AcpiS3SaveDxe/AcpiS3SaveDxe.inf +++ b/IntelFrameworkModulePkg/Universal/Acpi/AcpiS3SaveDxe/AcpiS3SaveDxe.inf @@ -1,7 +1,6 @@ ## @file -# Component description file for AcpiS3Save module. +# AcpiS3Save module installs ACPI S3 Save protocol to prepare S3 boot data. # -# This is an implementation of the ACPI S3 Save protocol. # Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# # This program and the accompanying materials are @@ -17,6 +16,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = AcpiS3SaveDxe + MODULE_UNI_FILE = AcpiS3SaveDxe.uni FILE_GUID = 2BDED685-F733-455f-A840-43A22B791FB3 MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 @@ -53,28 +53,30 @@ DxeServicesLib [Guids] - gEfiAcpiVariableGuid # ALWAYS_CONSUMED - gEfiAcpiS3ContextGuid # ALWAYS_CONSUMED - gEfiAcpiVariableCompatiblityGuid # SOMETIME_CONSUMED L"AcpiGlobalVariable" - gEfiAcpi20TableGuid # ALWAYS_CONSUMED System Table - gEfiAcpi10TableGuid # ALWAYS_CONSUMED System Table + gEfiAcpiVariableGuid ## PRODUCES ## UNDEFINED # LockBox Save Data. + gEfiAcpiS3ContextGuid ## PRODUCES ## UNDEFINED # LockBox Save Data. + gEfiAcpi20TableGuid ## SOMETIMES_CONSUMES ## SystemTable + gEfiAcpi10TableGuid ## SOMETIMES_CONSUMES ## SystemTable + ## SOMETIMES_CONSUMES ## Variable:L"AcpiGlobalVariable" + ## SOMETIMES_PRODUCES ## Variable:L"AcpiGlobalVariable" + gEfiAcpiVariableCompatiblityGuid [Protocols] - gEfiAcpiS3SaveProtocolGuid # PROTOCOL ALWAYS_PRODUCED - gEfiLegacyBiosProtocolGuid # PROTOCOL ALWAYS_CONSUMED - gEfiLegacyRegion2ProtocolGuid # PROTOCOL SOMETIMES_CONSUMED - gFrameworkEfiMpServiceProtocolGuid # PROTOCOL SOMETIMES_CONSUMED - gEdkiiVariableLockProtocolGuid ## SOMETIMES_CONSUMES + gEfiAcpiS3SaveProtocolGuid ## PRODUCES + gFrameworkEfiMpServiceProtocolGuid ## SOMETIMES_CONSUMES + ## NOTIFY + ## SOMETIMES_CONSUMES + gEdkiiVariableLockProtocolGuid [FeaturePcd] gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPlatformCsmSupport ## CONSUMES gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport ## CONSUMES - gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode + gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode ## CONSUMES [Pcd] - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdS3AcpiReservedMemorySize ## CONSUMES + gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdS3AcpiReservedMemorySize ## SOMETIMES_CONSUMES gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdS3BootScriptStackSize ## CONSUMES - gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable + gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable ## CONSUMES ## SOMETIMES_CONSUMES ## SOMETIMES_PRODUCES gEfiMdeModulePkgTokenSpaceGuid.PcdIdentifyMappingPageTablePtr @@ -85,4 +87,6 @@ # AcpiS3SaveDxe module is executed. # gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid AND gEfiMpServiceProtocolGuid - + +[UserExtensions.TianoCore."ExtraFiles"] + AcpiS3SaveDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/AcpiSupportDxe.inf b/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/AcpiSupportDxe.inf index 19818064fc..32ca4f648f 100644 --- a/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/AcpiSupportDxe.inf +++ b/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/AcpiSupportDxe.inf @@ -1,10 +1,10 @@ ## @file -# Acpi Support Dirver to install Acpi Support Protocol. +# Acpi Support Dirver to install Framework Acpi Support Protocol. # # This driver initializes ACPI support protocol instance data structure and intstall # ACPI support protocol to provide Get, Set and Publish Table services. # -# Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions @@ -20,6 +20,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = AcpiSupportDxe + MODULE_UNI_FILE = AcpiSupportDxe.uni FILE_GUID = 506533a6-e626-4500-b14f-17939c0e5b60 MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 @@ -56,22 +57,25 @@ [Guids] - gEfiAcpi10TableGuid # ALWAYS_CONSUMED - gEfiAcpiTableGuid + gEfiAcpi10TableGuid ## PRODUCES ## SystemTable + gEfiAcpiTableGuid ## PRODUCES ## SystemTable [FeaturePcd] - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdInstallAcpiSupportProtocol + gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdInstallAcpiSupportProtocol ## CONSUMES [Pcd] - gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemId - gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemTableId - gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemRevision - gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultCreatorId - gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultCreatorRevision + gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemId ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemTableId ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultOemRevision ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultCreatorId ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiDefaultCreatorRevision ## CONSUMES [Protocols] - gEfiAcpiTableProtocolGuid # PROTOCOL ALWAYS_PRODUCED - gEfiAcpiSupportProtocolGuid # PROTOCOL ALWAYS_PRODUCED + gEfiAcpiTableProtocolGuid ## PRODUCES + gEfiAcpiSupportProtocolGuid ## SOMETIMES_PRODUCES [Depex] TRUE + +[UserExtensions.TianoCore."ExtraFiles"] + AcpiSupportDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf b/IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf index 6796adc436..69eaac16f9 100644 --- a/IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf +++ b/IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf @@ -1,6 +1,6 @@ ## @file +# BDSDxe module is core driver for BDS phase. # -# BDSDxe module is core driver for BDS phase. # When DxeCore dispatching all DXE driver, this module will produce architecture protocol # gEfiBdsArchProtocolGuid. After DxeCore finish dispatching, DxeCore will invoke Entry # interface of protocol gEfiBdsArchProtocolGuid, then BDS phase is entered. @@ -28,6 +28,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = BdsDxe + MODULE_UNI_FILE = BdsDxe.uni FILE_GUID = FC5C7020-1A48-4198-9BE2-EAD5ABC8CF2F MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 @@ -113,93 +114,114 @@ UefiHiiServicesLib [Guids] - ## SOMETIMES_PRODUCES ## Variable:L"BootXX" (Boot option variable) - ## SOMETIMES_PRODUCES ## Variable:L"PlatformLang" (Platform supported languange in Rfc4646 format) - ## SOMETIMES_PRODUCES ## Variable:L"Lang" (Platform supported languange in Iso639 format) - ## SOMETIMES_PRODUCES ## Variable:L"KeyXX" (Hotkey option variable) - ## PRODUCES ## Variable:L"HwErrRecSupport" (The level of platform supported hardware Error Record Persistence) - ## SOMETIMES_PRODUCES ## Variable:L"BootOptionSupport" (The feature supported in boot option menu, value could be: EFI_BOOT_OPTION_SUPPORT_KEY, EFI_BOOT_OPTION_SUPPORT_APP - ## SOMETIMES_PRODUCES (not PcdUefiVariableDefaultLangDeprecate)## Variable:L"LangCodes" (Value of PcdUefiVariableDefaultLangCodes) - ## PRODUCES ## Variable:L"PlatformLangCodes" (Value of PcdUefiVariableDefaultPlatformLangCodes) - ## PRODUCES ## Variable:L"Timeout" (The time out value in second of showing progress bar) - ## SOMETIMES_PRODUCES ## Variable:L"BootOrder" (The boot option array) - ## SOMETIMES_PRODUCES ## Variable:L"DriverOrder" (The driver order list) - ## SOMETIMES_CONSUMES ## Variable:L"ConIn" (The device path of console in device) - ## SOMETIMES_CONSUMES ## Variable:L"ConOut" (The device path of console out device) - ## SOMETIMES_CONSUMES ## Variable:L"ErrOut" (The device path of error out device) - gEfiGlobalVariableGuid ## SOMETIMES_PRODUCES ## Variable:L"BootNext" (The number of next boot option) - gEfiFileSystemVolumeLabelInfoIdGuid ## CONSUMES ## GUID (Indicate the information type is volume) - gEfiFileInfoGuid ## CONSUMES ## GUID (Indicate the information type is file) - gEfiHiiPlatformSetupFormsetGuid ## CONSUMES ## GUID (Indicate the formset class guid to be displayed) - gEfiIfrTianoGuid ## CONSUMES ## GUID (Extended IFR Guid Opcode) - gEfiHiiDriverHealthFormsetGuid ## CONSUMES ## GUID (Indicate the Driver Health formset class guid to be displayed) - gEfiLegacyDevOrderVariableGuid ## SOMETIMES_PRODUCES ## Variable:L"LegacyDevOrder" - gFrontPageFormSetGuid ## PRODUCES ## FrontPage HII Package - gBootMaintFormSetGuid ## SOMETIMES_PRODUCES ## BootMaint HII Package - gFileExploreFormSetGuid ## SOMETIMES_PRODUCES ## FileExplore HII Package - gBootManagerFormSetGuid ## SOMETIMES_PRODUCES ## BootManager HII Package - gDeviceManagerFormSetGuid ## SOMETIMES_PRODUCES ## DeviceManager HII Package - gDriverHealthFormSetGuid ## SOMETIMES_PRODUCES ## DriverHealth HII Package - gConnectConInEventGuid ## CONSUMES ## GUID (Connect ConIn Event) - gEfiFmpCapsuleGuid ## CONSUMES ## GUID (FMP Capsule) - gEdkiiStatusCodeDataTypeVariableGuid ## SOMETIMES_CONSUMES + ## SOMETIMES_PRODUCES ## Variable:L"BootXXXX" # Boot option variable + ## SOMETIMES_PRODUCES ## Variable:L"DriverXXXX" # Driver load option. + ## SOMETIMES_PRODUCES ## Variable:L"PlatformLang" # Platform supported languange in Rfc4646 format + ## SOMETIMES_PRODUCES ## Variable:L"Lang" # Platform supported languange in Iso639 format + ## SOMETIMES_PRODUCES ## Variable:L"LangCodes" # Value of PcdUefiVariableDefaultLangCodes + ## PRODUCES ## Variable:L"PlatformLangCodes" # Value of PcdUefiVariableDefaultPlatformLangCodes + ## SOMETIMES_PRODUCES ## Variable:L"KeyXXXX" # Hotkey option variable + ## PRODUCES ## Variable:L"HwErrRecSupport" # The level of platform supported hardware Error Record Persistence + ## PRODUCES ## Variable:L"Timeout" # The time out value in second of showing progress bar + ## SOMETIMES_PRODUCES ## Variable:L"BootOptionSupport" # The feature supported in boot option menu, value could be: EFI_BOOT_OPTION_SUPPORT_KEY, EFI_BOOT_OPTION_SUPPORT_APP + ## SOMETIMES_PRODUCES ## Variable:L"BootOrder" # The boot option array + ## SOMETIMES_PRODUCES ## Variable:L"DriverOrder" # The driver order list + ## SOMETIMES_CONSUMES ## Variable:L"ConIn" # The device path of console in device + ## SOMETIMES_PRODUCES ## Variable:L"ConIn" # The device path of console in device + ## SOMETIMES_CONSUMES ## Variable:L"ConOut" # The device path of console out device + ## SOMETIMES_PRODUCES ## Variable:L"ConOut" # The device path of console out device + ## SOMETIMES_CONSUMES ## Variable:L"ErrOut" # The device path of error out device + ## SOMETIMES_PRODUCES ## Variable:L"ErrOut" # The device path of error out device + ## SOMETIMES_CONSUMES ## Variable:L"ConInDev" # The device path of console in device + ## SOMETIMES_CONSUMES ## Variable:L"ConOutDev" # The device path of console out device + ## SOMETIMES_CONSUMES ## Variable:L"ErrOutDev" # The device path of error out device + ## SOMETIMES_PRODUCES ## Variable:L"BootNext" # The number of next boot option + gEfiGlobalVariableGuid + gEfiFileSystemVolumeLabelInfoIdGuid ## SOMETIMES_CONSUMES ## UNDEFINED # Indicate the information type is volume + gEfiFileInfoGuid ## SOMETIMES_CONSUMES ## UNDEFINED # Indicate the information type is file + gEfiHiiPlatformSetupFormsetGuid ## SOMETIMES_CONSUMES ## UNDEFINED # Indicate the formset class guid to be displayed + gEfiIfrTianoGuid ## SOMETIMES_PRODUCES ## UNDEFINED # Extended IFR Guid Opcode + gEfiHiiDriverHealthFormsetGuid ## SOMETIMES_CONSUMES ## UNDEFINED # Indicate the Driver Health formset class guid to be displayed + ## SOMETIMES_PRODUCES ## Variable:L"LegacyDevOrder" + ## SOMETIMES_CONSUMES ## Variable:L"LegacyDevOrder" + gEfiLegacyDevOrderVariableGuid + gFrontPageFormSetGuid ## SOMETIMES_CONSUMES ## HII # FrontPage HII Package + gBootMaintFormSetGuid ## SOMETIMES_CONSUMES ## HII # BootMaint HII Package + gFileExploreFormSetGuid ## SOMETIMES_CONSUMES ## HII # FileExplore HII Package + gBootManagerFormSetGuid ## SOMETIMES_CONSUMES ## HII # BootManager HII Package + gDeviceManagerFormSetGuid ## SOMETIMES_CONSUMES ## HII # DeviceManager HII Package + gDriverHealthFormSetGuid ## SOMETIMES_CONSUMES ## HII # DriverHealth HII Package + ## SOMETIMES_PRODUCES ## Event + ## SOMETIMES_CONSUMES ## Event + gConnectConInEventGuid + gEfiFmpCapsuleGuid ## SOMETIMES_CONSUMES ## GUID # FMP Capsule + gEdkiiStatusCodeDataTypeVariableGuid ## SOMETIMES_CONSUMES ## GUID [Protocols] - gEfiSimpleFileSystemProtocolGuid ## PROTOCOL CONSUMES - gEfiLoadFileProtocolGuid ## PROTOCOL CONSUMES - gEfiBdsArchProtocolGuid ## PROTOCOL PRODUCES - gEfiSmbiosProtocolGuid ## PROTOCOL CONSUMES - gEfiGenericMemTestProtocolGuid ## PROTOCOL CONSUMES - gEfiLegacyBiosProtocolGuid ## PROTOCOL CONSUMES - gEfiUgaDrawProtocolGuid |gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport ## PROTOCOL SOMETIMES_CONSUMES - gEfiBlockIoProtocolGuid ## PROTOCOL CONSUMES - gEfiGraphicsOutputProtocolGuid ## PROTOCOL SOMETIMES_CONSUMES - gEfiSimpleTextInputExProtocolGuid ## PROTOCOL CONSUMES - gEfiHiiConfigAccessProtocolGuid ## PROTOCOL CONSUMES - gEfiFormBrowser2ProtocolGuid ## PROTOCOL CONSUMES - gEfiSerialIoProtocolGuid ## PROTOCOL CONSUMES - gEfiDevicePathProtocolGuid ## PROTOCOL CONSUMES - gEfiDriverHealthProtocolGuid ## PROTOCOL SOMETIMES_CONSUMES - gEfiPciIoProtocolGuid ## PROTOCOL CONSUMES - gEfiBootLogoProtocolGuid ## PROTOCOL SOMETIMES_CONSUMES - gEdkiiVariableLockProtocolGuid ## PROTOCOL CONSUMES + gEfiSimpleFileSystemProtocolGuid ## SOMETIMES_CONSUMES + gEfiLoadFileProtocolGuid ## SOMETIMES_CONSUMES + gEfiBdsArchProtocolGuid ## PRODUCES + gEfiSmbiosProtocolGuid ## CONSUMES + gEfiGenericMemTestProtocolGuid ## SOMETIMES_CONSUMES + gEfiLegacyBiosProtocolGuid ## SOMETIMES_CONSUMES + gEfiUgaDrawProtocolGuid |gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport ## SOMETIMES_CONSUMES + gEfiBlockIoProtocolGuid ## SOMETIMES_CONSUMES + gEfiGraphicsOutputProtocolGuid ## SOMETIMES_CONSUMES + ## CONSUMES + ## NOTIFY + gEfiSimpleTextInputExProtocolGuid + gEfiHiiConfigAccessProtocolGuid ## SOMETIMES_PRODUCES + gEfiFormBrowser2ProtocolGuid ## CONSUMES + gEfiSerialIoProtocolGuid ## SOMETIMES_CONSUMES + gEfiDevicePathProtocolGuid ## CONSUMES + gEfiDriverHealthProtocolGuid ## SOMETIMES_CONSUMES + gEfiPciIoProtocolGuid ## SOMETIMES_CONSUMES + gEfiBootLogoProtocolGuid ## SOMETIMES_CONSUMES + gEdkiiVariableLockProtocolGuid ## SOMETIMES_CONSUMES [FeaturePcd] - gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDeprecate - gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdBootlogoOnlyEnable + gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDeprecate ## CONSUMES + gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport ## CONSUMES + gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdBootlogoOnlyEnable ## CONSUMES [Pcd] - gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangCodes - gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang - gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLangCodes - gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang + gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangCodes ## SOMETIMES_CONSUMES + gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang ## SOMETIMES_CONSUMES + gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLangCodes ## CONSUMES + gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang ## SOMETIMES_CONSUMES + ## CONSUMES + ## PRODUCES gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdHardwareErrorRecordLevel - gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow - gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn + gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow ## PRODUCES + gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn ## PRODUCES + ## SOMETIMES_CONSUMES + ## SOMETIMES_PRODUCES gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPlatformBootTimeOut + ## CONSUMES + ## PRODUCES gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdBootState - gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVendor - gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareRevision - gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution - gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution - gEfiMdeModulePkgTokenSpaceGuid.PcdConInConnectOnDemand + gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVendor ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareRevision ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution ## PRODUCES + gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution ## PRODUCES + gEfiMdeModulePkgTokenSpaceGuid.PcdConInConnectOnDemand ## SOMETIMES_CONSUMES + ## CONSUMES + ## SOMETIMES_PRODUCES gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdSetupConOutColumn + ## CONSUMES + ## SOMETIMES_PRODUCES gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdSetupConOutRow - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile - gEfiMdeModulePkgTokenSpaceGuid.PcdErrorCodeSetVariable + gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution ## CONSUMES + gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdErrorCodeSetVariable ## CONSUMES [Depex] TRUE # # [BootMode] -# BOOT_ON_FLASH_UPDATE ## SOMETIMES_CONSUMES (Update Capsule Image) +# FLASH_UPDATE ## SOMETIMES_CONSUMES # Update Capsule Image # -# -# [Hob] -# HOB ## SOMETIMES_CONSUMES ## GUID EXTENSION Capsule Data Hob -# -# + +[UserExtensions.TianoCore."ExtraFiles"] + BdsDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf b/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf index 483dd65fa1..2faba9d6f7 100644 --- a/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf +++ b/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf @@ -1,7 +1,7 @@ ## @file # VGA Class Driver that managers VGA devices and produces Simple Text Output Protocol. # -# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -17,6 +17,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = VgaClassDxe + MODULE_UNI_FILE = VgaClassDxe.uni FILE_GUID = BF89F10D-B205-474f-96E3-7A7BB1B4A407 MODULE_TYPE = UEFI_DRIVER VERSION_STRING = 1.0 @@ -54,9 +55,10 @@ [Protocols] - gEfiSimpleTextOutProtocolGuid # PROTOCOL BY_START - gEfiVgaMiniPortProtocolGuid # PROTOCOL TO_START - gEfiPciIoProtocolGuid # PROTOCOL TO_START - gEfiDevicePathProtocolGuid # PROTOCOL TO_START - + gEfiSimpleTextOutProtocolGuid ## BY_START + gEfiVgaMiniPortProtocolGuid ## TO_START + gEfiPciIoProtocolGuid ## TO_START + gEfiDevicePathProtocolGuid ## TO_START +[UserExtensions.TianoCore."ExtraFiles"] + VgaClassDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/CpuIoDxe/CpuIoDxe.inf b/IntelFrameworkModulePkg/Universal/CpuIoDxe/CpuIoDxe.inf index cb2ebc7ee4..368fa75bbb 100644 --- a/IntelFrameworkModulePkg/Universal/CpuIoDxe/CpuIoDxe.inf +++ b/IntelFrameworkModulePkg/Universal/CpuIoDxe/CpuIoDxe.inf @@ -1,7 +1,7 @@ ## @file # Module that produces the Framework CPU I/O Protocol using the services of the I/O Library # -# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License # which accompanies this distribution. The full text of the license may be found at @@ -14,6 +14,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = CpuIoDxe + MODULE_UNI_FILE = CpuIoDxe.uni FILE_GUID = BAE7599F-3C6B-43b7-BDF0-9CE07AA91AA6 MODULE_TYPE = DXE_RUNTIME_DRIVER VERSION_STRING = 1.0 @@ -45,3 +46,6 @@ [Depex] TRUE + +[UserExtensions.TianoCore."ExtraFiles"] + CpuIoDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf b/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf index 2ecc5baace..7845a892d9 100644 --- a/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf +++ b/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf @@ -21,7 +21,7 @@ # drivers to be aware of all reporting formats. # For more information, please ref http://www.intel.com/technology/framework/ # -# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -36,6 +36,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = DataHubDxe + MODULE_UNI_FILE = DataHubDxe.uni FILE_GUID = 53BCC14F-C24F-434C-B294-8ED2D4CC1860 MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 @@ -69,9 +70,11 @@ [Protocols] - gEfiDataHubProtocolGuid # PROTOCOL PRODUCED + gEfiDataHubProtocolGuid ## PRODUCES [Depex] TRUE +[UserExtensions.TianoCore."ExtraFiles"] + DataHubDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/DataHubStdErrDxe/DataHubStdErrDxe.inf b/IntelFrameworkModulePkg/Universal/DataHubStdErrDxe/DataHubStdErrDxe.inf index aceafd379a..f9dede864c 100644 --- a/IntelFrameworkModulePkg/Universal/DataHubStdErrDxe/DataHubStdErrDxe.inf +++ b/IntelFrameworkModulePkg/Universal/DataHubStdErrDxe/DataHubStdErrDxe.inf @@ -1,7 +1,7 @@ ## @file -# This driver takes DEBUG () info from Data Hub and writes it to StdErr if it exists. +# This driver takes DEBUG info from Data Hub and writes it to StdErr if it exists. # -# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -15,6 +15,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = DataHubStdErrDxe + MODULE_UNI_FILE = DataHubStdErrDxe.uni FILE_GUID = CA515306-00CE-4032-874E-11B755FF6866 MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 @@ -42,13 +43,15 @@ DebugLib [Guids] - gEfiStatusCodeDataTypeDebugGuid # SOMETIMES_CONSUMED - gEfiDataHubStatusCodeRecordGuid # SOMETIMES_CONSUMED + gEfiStatusCodeDataTypeDebugGuid ## SOMETIMES_CONSUMES ## UNDEFINED # DataRecord Date Type + gEfiDataHubStatusCodeRecordGuid ## SOMETIMES_CONSUMES ## UNDEFINED # DataRecordGuid [Protocols] - gEfiDataHubProtocolGuid # PROTOCOL CONSUMED + gEfiDataHubProtocolGuid ## CONSUMES [Depex] gEfiDataHubProtocolGuid +[UserExtensions.TianoCore."ExtraFiles"] + DataHubStdErrDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/FwVolDxe.inf b/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/FwVolDxe.inf index 2199026898..057266bb2b 100644 --- a/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/FwVolDxe.inf +++ b/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/FwVolDxe.inf @@ -1,8 +1,10 @@ ## @file -# FwVolDxe driver produces Firmware Volume2 protocol with full services +# FwVolDxe Driver. +# +# This driver produces Firmware Volume2 protocol with full services # (read/write, get/set) based on Firmware Volume Block protocol. # -# Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# # This program and the accompanying materials are # licensed and made available under the terms and conditions of the BSD License @@ -17,6 +19,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = FwVolDxe + MODULE_UNI_FILE = FwVolDxe.uni FILE_GUID = 233C2592-1CEC-494a-A097-15DC96379777 MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 @@ -55,9 +58,9 @@ [Guids] - gEfiFirmwareVolumeTopFileGuid ## CONSUMES - gEfiFirmwareFileSystem2Guid ## CONSUMES - gEfiFirmwareFileSystem3Guid ## CONSUMES + gEfiFirmwareVolumeTopFileGuid ## CONSUMES ## File # VTF file + gEfiFirmwareFileSystem2Guid ## CONSUMES ## GUID # File System Guid + gEfiFirmwareFileSystem3Guid ## CONSUMES ## GUID # File System Guid [Protocols] gEfiSectionExtractionProtocolGuid ## CONSUMES @@ -67,3 +70,5 @@ [Depex] gEfiFirmwareVolumeBlockProtocolGuid AND gEfiSectionExtractionProtocolGuid +[UserExtensions.TianoCore."ExtraFiles"] + FwVolDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/UpdateDriverDxe.inf b/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/UpdateDriverDxe.inf index 32b896442a..d83a1ecb57 100644 --- a/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/UpdateDriverDxe.inf +++ b/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/UpdateDriverDxe.inf @@ -1,9 +1,11 @@ ## @file +# Update Driver for Capulse update. +# # This driver is intended to be put in a capsule (FV). If all goes well, # then it should be dispatched from the capsule FV, then find the image # in the same FV and program it in a target Firmware Volume device. # -# Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# # This program and the accompanying materials are # licensed and made available under the terms and conditions of the BSD License @@ -18,6 +20,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = UpdateDriverDxe + MODULE_UNI_FILE = UpdateDriverDxe.uni FILE_GUID = 0E84FC69-29CC-4C6D-92AC-6D476921850F MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 @@ -57,8 +60,8 @@ DevicePathLib [Guids] - gEfiConfigFileNameGuid ## CONSUMES FileName to store ConfigFile - gEfiUpdateDataFileGuid ## CONSUMES FileName to store Capsule Data. + gEfiConfigFileNameGuid ## CONSUMES ## File # FileName to store ConfigFile + gEfiUpdateDataFileGuid ## CONSUMES ## File # FileName to store Capsule Data. [Protocols] gEfiFaultTolerantWriteProtocolGuid ## CONSUMES @@ -69,3 +72,5 @@ [Depex] gEfiFirmwareVolumeBlockProtocolGuid AND gEfiFaultTolerantWriteProtocolGuid +[UserExtensions.TianoCore."ExtraFiles"] + UpdateDriverDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/LegacyRegionDxe/LegacyRegionDxe.inf b/IntelFrameworkModulePkg/Universal/LegacyRegionDxe/LegacyRegionDxe.inf index c09f68a488..f8e5639dec 100644 --- a/IntelFrameworkModulePkg/Universal/LegacyRegionDxe/LegacyRegionDxe.inf +++ b/IntelFrameworkModulePkg/Universal/LegacyRegionDxe/LegacyRegionDxe.inf @@ -1,5 +1,5 @@ ## @file -# Produces the Legacy Region Protocol. +# Produces Framework Legacy Region Protocol. # # This generic implementation of the Legacy Region Protocol does not actually # perform any lock/unlock operations. This module may be used on platforms @@ -7,7 +7,7 @@ # be used as a template driver for implementing the Legacy Region Protocol on # a platform that does support HW locking of the legacy memory regions. # -# Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+# Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License # which accompanies this distribution. The full text of the license may be found at @@ -21,6 +21,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = LegacyRegionDxe + MODULE_UNI_FILE = LegacyRegionDxe.uni FILE_GUID = 8C439043-85CA-467a-96F1-CB14F4D0DCDA MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 @@ -49,3 +50,6 @@ [Depex] TRUE + +[UserExtensions.TianoCore."ExtraFiles"] + LegacyRegionDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/SectionExtractionDxe.inf b/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/SectionExtractionDxe.inf index 5353149ebe..ab0bd63076 100644 --- a/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/SectionExtractionDxe.inf +++ b/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/SectionExtractionDxe.inf @@ -1,12 +1,11 @@ ## @file -# # Section Extraction Dxe Driver produces framework section extract protocol. # # The section is implemented as a linked list of section streams, # where each stream contains a linked list of children, which may be leaves or # encapsulations. Encapsulation section will further generate new section stream entries. # -# Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License # which accompanies this distribution. The full text of the license may be found at @@ -20,6 +19,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = SectionExtractionDxe + MODULE_UNI_FILE = SectionExtractionDxe.uni FILE_GUID = 801ADCA0-815E-46a4-84F7-657F53621A57 MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 @@ -47,10 +47,11 @@ IntelFrameworkPkg/IntelFrameworkPkg.dec [Protocols] - gEfiSectionExtractionProtocolGuid ## PRODUCEDS - gEfiDecompressProtocolGuid ## CONSUMEDS + gEfiSectionExtractionProtocolGuid ## PRODUCES + gEfiDecompressProtocolGuid ## SOMETIMES_CONSUMES [Depex] gEfiDecompressProtocolGuid - - \ No newline at end of file + +[UserExtensions.TianoCore."ExtraFiles"] + SectionExtractionDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/StatusCode/DatahubStatusCodeHandlerDxe/DatahubStatusCodeHandlerDxe.inf b/IntelFrameworkModulePkg/Universal/StatusCode/DatahubStatusCodeHandlerDxe/DatahubStatusCodeHandlerDxe.inf index ab839da7ff..1a576772a3 100644 --- a/IntelFrameworkModulePkg/Universal/StatusCode/DatahubStatusCodeHandlerDxe/DatahubStatusCodeHandlerDxe.inf +++ b/IntelFrameworkModulePkg/Universal/StatusCode/DatahubStatusCodeHandlerDxe/DatahubStatusCodeHandlerDxe.inf @@ -1,8 +1,7 @@ ## @file -# Status Code Handler Driver which produces datahub handler and hook it -# onto the DXE status code router. +# Status Code Handler Driver which produces datahub handler. # -# Copyright (c) 2011, Intel Corporation. All rights reserved.
+# Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -17,6 +16,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = DatahubStatusCodeHandlerDxe + MODULE_UNI_FILE = DatahubStatusCodeHandlerDxe.uni FILE_GUID = 863D214F-0920-437B-8CAD-88EA83A24E97 MODULE_TYPE = DXE_DRIVER VERSION_STRING = 1.0 @@ -53,19 +53,20 @@ [Guids] gEfiEventExitBootServicesGuid ## CONSUMES ## Event - gEfiStatusCodeDataTypeStringGuid ## CONSUMES - gEfiDataHubStatusCodeRecordGuid ## CONSUMES - gEfiStatusCodeDataTypeDebugGuid ## CONSUMES + gEfiDataHubStatusCodeRecordGuid ## PRODUCES ## UNDEFINED # DataRecord Guid + gEfiStatusCodeDataTypeDebugGuid ## SOMETIMES_PRODUCES ## UNDEFINED # Record data type [Protocols] gEfiRscHandlerProtocolGuid ## CONSUMES gEfiDataHubProtocolGuid ## CONSUMES - gEfiStatusCodeRuntimeProtocolGuid ## CONSUMES + gEfiStatusCodeRuntimeProtocolGuid ## UNDEFINED [FeaturePcd] - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseDataHub + gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseDataHub ## CONSUMES [Depex] gEfiRscHandlerProtocolGuid AND gEfiDataHubProtocolGuid - \ No newline at end of file + +[UserExtensions.TianoCore."ExtraFiles"] + DatahubStatusCodeHandlerDxeExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf b/IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf index 4f35da9fdd..04cef4a2f4 100644 --- a/IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf +++ b/IntelFrameworkModulePkg/Universal/StatusCode/Pei/StatusCodePei.inf @@ -1,7 +1,7 @@ ## @file # Status code PEIM which produces Status Code PPI. # -# Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -16,6 +16,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = StatusCodePei + MODULE_UNI_FILE = StatusCodePei.uni FILE_GUID = 1EC0F53A-FDE0-4576-8F25-7A1A410F58EB MODULE_TYPE = PEIM VERSION_STRING = 1.0 @@ -55,20 +56,23 @@ [Guids] gMemoryStatusCodeRecordGuid ## SOMETIMES_CONSUMES ## HOB - gEfiStatusCodeDataTypeStringGuid ## CONSUMES + gEfiStatusCodeDataTypeStringGuid ## SOMETIMES_CONSUMES ## UNDEFINED # String Data Type [Ppis] gEfiPeiStatusCodePpiGuid ## PRODUCES [FeaturePcd] - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseOEM - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial + gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseOEM ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial ## CONSUMES [Pcd] - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1|gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1|gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory ## SOMETIMES_CONSUMES [Depex] TRUE + +[UserExtensions.TianoCore."ExtraFiles"] + StatusCodePeiExtra.uni diff --git a/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/StatusCodeRuntimeDxe.inf b/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/StatusCodeRuntimeDxe.inf index d0ebf8f221..d7c35021a2 100644 --- a/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/StatusCodeRuntimeDxe.inf +++ b/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/StatusCodeRuntimeDxe.inf @@ -1,8 +1,7 @@ ## @file -# Status Code Runtime Dxe driver that supports multiple devices and produces -# Status Code Runtime Protocol. +# Status Code Runtime Dxe driver produces Status Code Runtime Protocol. # -# Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -17,6 +16,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = StatusCodeRuntimeDxe + MODULE_UNI_FILE = StatusCodeRuntimeDxe.uni FILE_GUID = FEDE0A1B-BCA2-4A9F-BB2B-D9FD7DEC2E9F MODULE_TYPE = DXE_RUNTIME_DRIVER VERSION_STRING = 1.0 @@ -62,25 +62,27 @@ [Guids] - gEfiDataHubStatusCodeRecordGuid ## SOMETIMES_CONSUMES (Needed if Data Hub is supported for status code.) - gEfiStatusCodeDataTypeDebugGuid ## SOMETIMES_CONSUMES (Needed if Data Hub is supported for status code.) - gMemoryStatusCodeRecordGuid ## CONSUMES ## HOB + gEfiDataHubStatusCodeRecordGuid ## SOMETIMES_PRODUCES ## UNDEFINED # DataRecord Guid + gEfiStatusCodeDataTypeDebugGuid ## SOMETIMES_PRODUCES ## UNDEFINED # Record data type + gMemoryStatusCodeRecordGuid ## SOMETIMES_CONSUMES ## HOB gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event - gEfiStatusCodeDataTypeStringGuid ## CONSUMES + gEfiStatusCodeDataTypeStringGuid ## SOMETIMES_CONSUMES ## UNDEFINED [Protocols] gEfiStatusCodeRuntimeProtocolGuid ## PRODUCES - gEfiDataHubProtocolGuid ## SOMETIMES_CONSUMES (Needed if Data Hub is supported for status code.) + gEfiDataHubProtocolGuid ## SOMETIMES_CONSUMES # Needed if Data Hub is supported for status code [FeaturePcd] - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeReplayIn - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseOEM - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseDataHub - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeReplayIn ## CONSUMES + gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseOEM ## CONSUMES + gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseDataHub ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial ## CONSUMES [Pcd] - gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize |128| gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory + gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize |128| gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory ## SOMETIMES_CONSUMES [Depex] - TRUE \ No newline at end of file + TRUE +[UserExtensions.TianoCore."ExtraFiles"] + StatusCodeRuntimeDxeExtra.uni -- cgit v1.2.3