From nobody Thu Dec 26 13:37:56 2024 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) smtp.mailfrom=edk2-devel-bounces@lists.01.org Return-Path: Received: from ml01.01.org (ml01.01.org [198.145.21.10]) by mx.zohomail.com with SMTPS id 1506337628180701.5567231908262; Mon, 25 Sep 2017 04:07:08 -0700 (PDT) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 9B9DA20945BB1; Mon, 25 Sep 2017 04:03:37 -0700 (PDT) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id B1BB820945BAE for ; Mon, 25 Sep 2017 04:03:31 -0700 (PDT) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP; 25 Sep 2017 04:06:43 -0700 Received: from shwde7172.ccr.corp.intel.com ([10.239.9.14]) by orsmga004.jf.intel.com with ESMTP; 25 Sep 2017 04:06:42 -0700 X-Original-To: edk2-devel@lists.01.org Received-SPF: none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) client-ip=198.145.21.10; envelope-from=edk2-devel-bounces@lists.01.org; helo=ml01.01.org; Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.31; helo=mga06.intel.com; envelope-from=liming.gao@intel.com; receiver=edk2-devel@lists.01.org X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,435,1500966000"; d="scan'208";a="132050282" From: Liming Gao To: edk2-devel@lists.01.org Date: Mon, 25 Sep 2017 19:06:24 +0800 Message-Id: <1506337584-9588-12-git-send-email-liming.gao@intel.com> X-Mailer: git-send-email 2.8.0.windows.1 In-Reply-To: <1506337584-9588-1-git-send-email-liming.gao@intel.com> References: <1506337584-9588-1-git-send-email-liming.gao@intel.com> Subject: [edk2] [Patch 11/11] MdeModulePkg: Update Ppi/Protocol/Guid usage in INF files X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Eric Dong , Star Zeng MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Errors-To: edk2-devel-bounces@lists.01.org Sender: "edk2-devel" X-ZohoMail: RSF_4 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao Cc: Star Zeng Cc: Eric Dong Reviewed-by: Star Zeng --- MdeModulePkg/Core/Dxe/DxeMain.inf | 2 +- MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf | 2 +- .../BootMaintenanceManagerUiLib.inf | 4 +--- MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.inf | 8 +++++-= -- MdeModulePkg/Library/DxeCapsuleLibFmp/DxeRuntimeCapsuleLib.inf | 8 +++++-= -- MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf | 10 +++++-= ---- MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf | 2 +- MdeModulePkg/Universal/EsrtDxe/EsrtDxe.inf | 2 +- MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf | 4 ++-- MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf | 2 +- 10 files changed, 23 insertions(+), 21 deletions(-) diff --git a/MdeModulePkg/Core/Dxe/DxeMain.inf b/MdeModulePkg/Core/Dxe/DxeM= ain.inf index 30d5984..e29d6c8 100644 --- a/MdeModulePkg/Core/Dxe/DxeMain.inf +++ b/MdeModulePkg/Core/Dxe/DxeMain.inf @@ -107,7 +107,7 @@ ## CONSUMES ## Event ## PRODUCES ## Event gEfiEventExitBootServicesGuid - gEfiHobMemoryAllocModuleGuid ## CONSUMES ##= HOB + gEfiHobMemoryAllocModuleGuid ## SOMETIMES_CONSUMES ##= HOB gEfiFirmwareFileSystem2Guid ## CONSUMES ##= GUID # Used to compare with FV's file system guid and get the FV's file sy= stem format gEfiFirmwareFileSystem3Guid ## CONSUMES ##= GUID # Used to compare with FV's file system guid and get the FV's file sy= stem format gAprioriGuid ## SOMETIMES_CONSUMES ##= File diff --git a/MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf b/MdeModulePkg/Core/= PiSmmCore/PiSmmCore.inf index 95e34bd..49ae6fb 100644 --- a/MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf +++ b/MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf @@ -109,7 +109,7 @@ gEdkiiMemoryProfileGuid ## SOMETIMES_PRODUCES ## GUID # Install protocol gEdkiiSmmMemoryProfileGuid - gEdkiiPiSmmMemoryAttributesTableGuid ## SOMETIMES_PRODUCES ##= SystemTable + gEdkiiPiSmmMemoryAttributesTableGuid ## PRODUCES ## SystemTab= le ## SOMETIMES_CONSUMES ## SystemTable gLoadFixedAddressConfigurationTableGuid ## SOMETIMES_PRODUCES ## GUID # Install protocol diff --git a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenan= ceManagerUiLib.inf b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootM= aintenanceManagerUiLib.inf index 1c0c0e1..def923b 100644 --- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManag= erUiLib.inf +++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManag= erUiLib.inf @@ -79,9 +79,7 @@ ## SOMETIMES_CONSUMES ## V= ariable:L"ConIn" (The device path of console in device) ## SOMETIMES_CONSUMES ## V= ariable:L"ConOut" (The device path of console out device) ## SOMETIMES_CONSUMES ## V= ariable:L"ErrOut" (The device path of error out device) - gEfiFileSystemVolumeLabelInfoIdGuid ## CONSUMES ## GUID (Indic= ate the information type is volume) - gEfiFileInfoGuid ## CONSUMES ## GUID (Indic= ate the information type is file) - gEfiIfrTianoGuid ## CONSUMES ## GUID (Exten= ded IFR Guid Opcode) + gEfiIfrTianoGuid ## SOMETIMES_CONSUMES ## G= UID (Extended IFR Guid Opcode) gEfiIfrFrontPageGuid ## CONSUMES ## GUID gEfiIfrBootMaintenanceGuid ## CONSUMES ## GUID =20 diff --git a/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.inf b/MdeM= odulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.inf index a6cf54c..a7c3699 100644 --- a/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.inf +++ b/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.inf @@ -66,15 +66,17 @@ =20 [Protocols] gEsrtManagementProtocolGuid ## CONSUMES - gEfiFirmwareManagementProtocolGuid ## SOMETIMES_CONSUMES + gEfiFirmwareManagementProtocolGuid ## CONSUMES gEdkiiVariableLockProtocolGuid ## SOMETIMES_CONSUMES =20 [Guids] gEfiFmpCapsuleGuid ## SOMETIMES_CONSUMES ## GUID gWindowsUxCapsuleGuid ## SOMETIMES_CONSUMES ## GUID gEfiSystemResourceTableGuid ## SOMETIMES_CONSUMES ## GUID - gEfiCapsuleReportGuid ## CONSUMES ## Variable - gEfiCapsuleVendorGuid ## CONSUMES ## Variable + ## SOMETIMES_CONSUMES ## Variable:L"CapsuleMax" + ## SOMETIMES_PRODUCES ## Variable:L"CapsuleMax" + gEfiCapsuleReportGuid + gEfiCapsuleVendorGuid ## SOMETIMES_CONSUMES ## Variabl= e:L"CapsuleUpdateData" gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event =20 [Depex] diff --git a/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeRuntimeCapsuleLib.inf= b/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeRuntimeCapsuleLib.inf index 25b7d51..4191675 100644 --- a/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeRuntimeCapsuleLib.inf +++ b/MdeModulePkg/Library/DxeCapsuleLibFmp/DxeRuntimeCapsuleLib.inf @@ -69,15 +69,17 @@ =20 [Protocols] gEsrtManagementProtocolGuid ## CONSUMES - gEfiFirmwareManagementProtocolGuid ## SOMETIMES_CONSUMES + gEfiFirmwareManagementProtocolGuid ## CONSUMES gEdkiiVariableLockProtocolGuid ## SOMETIMES_CONSUMES =20 [Guids] gEfiFmpCapsuleGuid ## SOMETIMES_CONSUMES ## GUID gWindowsUxCapsuleGuid ## SOMETIMES_CONSUMES ## GUID gEfiSystemResourceTableGuid ## SOMETIMES_CONSUMES ## GUID - gEfiCapsuleReportGuid ## CONSUMES ## Variable - gEfiCapsuleVendorGuid ## CONSUMES ## Variable + ## SOMETIMES_CONSUMES ## Variable:L"CapsuleMax" + ## SOMETIMES_PRODUCES ## Variable:L"CapsuleMax" + gEfiCapsuleReportGuid + gEfiCapsuleVendorGuid ## SOMETIMES_CONSUMES ## Variabl= e:L"CapsuleUpdateData" gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event =20 diff --git a/MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf b/Mde= ModulePkg/Library/FileExplorerLib/FileExplorerLib.inf index c292aa2..75071d9 100644 --- a/MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf +++ b/MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf @@ -50,14 +50,14 @@ UefiHiiServicesLib =20 [Guids] - gEfiFileSystemVolumeLabelInfoIdGuid ## CONSUMES ## GUID (Indic= ate the information type is volume) - gEfiIfrTianoGuid ## CONSUMES ## GUID (Exten= ded IFR Guid Opcode) + gEfiFileSystemVolumeLabelInfoIdGuid ## SOMETIMES_CONSUMES ## G= UID (Indicate the information type is volume) + gEfiIfrTianoGuid ## SOMETIMES_CONSUMES ## G= UID (Extended IFR Guid Opcode) =20 [Protocols] - gEfiSimpleFileSystemProtocolGuid ## CONSUMES - gEfiHiiConfigAccessProtocolGuid ## CONSUMES + gEfiSimpleFileSystemProtocolGuid ## SOMETIMES_CONSUMES + gEfiHiiConfigAccessProtocolGuid ## PRODUCES gEfiFormBrowser2ProtocolGuid ## CONSUMES - gEfiDevicePathToTextProtocolGuid ## CONSUMES + gEfiDevicePathToTextProtocolGuid ## PRODUCES =20 [Depex.common.DXE_DRIVER] gEfiFormBrowser2ProtocolGuid AND gEfiHiiDatabaseProtocolGuid \ No newline at end of file diff --git a/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf b/MdeModulePk= g/Library/UefiSortLib/UefiSortLib.inf index 32c02b0..4c3d5e0 100644 --- a/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf +++ b/MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf @@ -42,6 +42,6 @@ DevicePathLib =20 [Protocols] - gEfiUnicodeCollation2ProtocolGuid ## CONSUMES + gEfiUnicodeCollation2ProtocolGuid ## SOMETIMES_CON= SUMES gEfiDevicePathProtocolGuid ## CONSUMES =20 diff --git a/MdeModulePkg/Universal/EsrtDxe/EsrtDxe.inf b/MdeModulePkg/Univ= ersal/EsrtDxe/EsrtDxe.inf index 2c66f15..06b3a08 100644 --- a/MdeModulePkg/Universal/EsrtDxe/EsrtDxe.inf +++ b/MdeModulePkg/Universal/EsrtDxe/EsrtDxe.inf @@ -58,7 +58,7 @@ [Protocols] gEfiFirmwareManagementProtocolGuid ## SOMETIMES_CONSUMES gEsrtManagementProtocolGuid ## PRODUCES - gEdkiiVariableLockProtocolGuid ## CONSUMES + gEdkiiVariableLockProtocolGuid ## SOMETIMES_CONSUMES =20 [Pcd] gEfiMdeModulePkgTokenSpaceGuid.PcdMaxFmpEsrtCacheNum ##= CONSUMES diff --git a/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf b/M= deModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf index 7f8f6cb..c5553a3 100644 --- a/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf +++ b/MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf @@ -1,7 +1,7 @@ ## @file # This driver produces security2 and security architectural protocol base= d on SecurityManagementLib. # -# Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.
# This program and the accompanying materials # are licensed and made available under the terms and conditions of the B= SD License # which accompanies this distribution. The full text of the license may b= e found at @@ -51,7 +51,7 @@ gEfiSecurityArchProtocolGuid ## PRODUCES gEfiSecurity2ArchProtocolGuid ## PRODUCES gEfiDeferredImageLoadProtocolGuid ## PRODUCES - gEfiDxeSmmReadyToLockProtocolGuid ## CONSUMES + gEfiDxeSmmReadyToLockProtocolGuid ## NOTIFY =20 [Depex] TRUE diff --git a/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf b/M= deModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf index fefaefe..f7b53ea 100644 --- a/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf +++ b/MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf @@ -77,7 +77,7 @@ ## NOTIFY gEdkiiFormDisplayEngineProtocolGuid gEdkiiFormBrowserExProtocolGuid ## PRODUCES - gEfiRegularExpressionProtocolGuid ## CONSUMES + gEfiRegularExpressionProtocolGuid ## SOMETIMES_CONSUMES =20 [FeaturePcd] gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport = ## CONSUMES --=20 2.8.0.windows.1 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel