From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: liming.gao@intel.com) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by groups.io with SMTP; Tue, 21 May 2019 18:38:48 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 May 2019 18:38:47 -0700 X-ExtLoop1: 1 Received: from lgao4-mobl1.ccr.corp.intel.com ([10.255.28.21]) by orsmga003.jf.intel.com with ESMTP; 21 May 2019 18:38:46 -0700 From: "Liming Gao" To: devel@edk2.groups.io Cc: Shenglei Zhang , Michael A Kubacki , Jiewen Yao , Shifei A Lu , Xiaohu Zhou Subject: [Patch V5 edk2-platform 17/18] Platform/MinPlatformPkg: Update DSC to use NetworkPkg DSC. Date: Wed, 22 May 2019 09:38:40 +0800 Message-Id: <20190522013840.21460-1-liming.gao@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 From: Shenglei Zhang This patch updates the DSC file to use the include fragment files provided by NetworkPkg. And add network related definition in CoreCommonLib.dsc, remove HttpLib from CoreDxeLib.dsc. Cc: Michael A Kubacki Cc: Jiewen Yao Cc: Shifei A Lu Cc: Xiaohu Zhou Signed-off-by: Shenglei Zhang Reviewed-by: Michael Kubacki Reviewed-by: Liming Gao --- This change is updated to remove Http from MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc | 11 ++++++----- Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc | 2 -- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc index efe02c99f3..23ab53dbfe 100644 --- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc +++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc @@ -72,11 +72,12 @@ # UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf - NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf - IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf - UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf - TcpIoLib|MdeModulePkg/Library/DxeTcpIoLib/DxeTcpIoLib.inf - DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf + + # + # Network libraries + # +!include NetworkPkg/NetworkLibs.dsc.inc + OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc index 5b3679bb4e..0f0f15d3f6 100644 --- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc +++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc @@ -40,8 +40,6 @@ BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf - HttpLib|MdeModulePkg/Library/DxeHttpLib/DxeHttpLib.inf - Tpm2DeviceLib|SecurityPkg/Library/Tpm2DeviceLibRouter/Tpm2DeviceLibRouterDxe.inf HashLib|SecurityPkg/Library/HashLibBaseCryptoRouter/HashLibBaseCryptoRouterDxe.inf Tcg2PhysicalPresenceLib|SecurityPkg/Library/DxeTcg2PhysicalPresenceLib/DxeTcg2PhysicalPresenceLib.inf -- 2.13.0.windows.1