From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.20; helo=mga02.intel.com; envelope-from=shenglei.zhang@intel.com; receiver=edk2-devel@lists.01.org Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (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 3DD34211E3481 for ; Thu, 21 Mar 2019 19:34:51 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Mar 2019 19:34:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,255,1549958400"; d="scan'208";a="330871375" Received: from shenglei-dev.ccr.corp.intel.com ([10.239.158.52]) by fmsmga005.fm.intel.com with ESMTP; 21 Mar 2019 19:34:50 -0700 From: Shenglei Zhang To: edk2-devel@lists.01.org Cc: Ray Ni , Hao Wu Date: Fri, 22 Mar 2019 10:34:42 +0800 Message-Id: <20190322023444.15596-2-shenglei.zhang@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20190322023444.15596-1-shenglei.zhang@intel.com> References: <20190322023444.15596-1-shenglei.zhang@intel.com> Subject: [PATCH 1/3] Nt32Pkg/Nt32Pkg.dsc: Remove EdkCompatibilityPkg information X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Mar 2019 02:34:51 -0000 EdkCompatibilityPkg will be removed from edk2/master. The dependency about EdkCompatibilityPkg in Nt32Pkg.dsc should also be removed. Cc: Ray Ni Cc: Hao Wu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang --- Nt32Pkg/Nt32Pkg.dsc | 51 --------------------------------------------- 1 file changed, 51 deletions(-) diff --git a/Nt32Pkg/Nt32Pkg.dsc b/Nt32Pkg/Nt32Pkg.dsc index 4dbde0cc45..d7b78007d2 100644 --- a/Nt32Pkg/Nt32Pkg.dsc +++ b/Nt32Pkg/Nt32Pkg.dsc @@ -545,54 +545,3 @@ NOOPT_*_*_DLINK_FLAGS = /EXPORT:InitializeDriver=$(IMAGE_ENTRY_POINT) /BASE:0x10000 /ALIGN:4096 /FILEALIGN:4096 /SUBSYSTEM:CONSOLE RELEASE_*_*_DLINK_FLAGS = /ALIGN:4096 /FILEALIGN:4096 -############################################################################################################# -# NOTE: -# The following [Libraries] section is for building EDK module under the EDKII tool chain. -# If you want build EDK module for Nt32 platform, please uncomment [Libraries] section and -# libraries used by that EDK module. -# Currently, Nt32 platform do not has any EDK style module -# -# -#[Libraries] - # - # Libraries common to PEI and DXE - # - # EdkCompatibilityPkg/Foundation/Efi/Guid/EfiGuidLib.inf - # EdkCompatibilityPkg/Foundation/Framework/Guid/EdkFrameworkGuidLib.inf - # EdkCompatibilityPkg/Foundation/Guid/EdkGuidLib.inf - # EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/EfiCommonLib.inf - # EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/CpuIA32Lib.inf - # EdkCompatibilityPkg/Foundation/Cpu/Itanium/CpuIa64Lib/CpuIA64Lib.inf - # EdkCompatibilityPkg/Foundation/Library/CustomizedDecompress/CustomizedDecompress.inf - # EdkCompatibilityPkg/Foundation/Library/CompilerStub/CompilerStubLib.inf - # EdkCompatibilityPkg/Foundation/Library/Dxe/Hob/HobLib.inf - - # - # PEI libraries - # - # EdkCompatibilityPkg/Foundation/Framework/Ppi/EdkFrameworkPpiLib.inf - # EdkCompatibilityPkg/Foundation/Ppi/EdkPpiLib.inf - # EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/PeiLib.inf - # EdkCompatibilityPkg/Foundation/Library/Pei/Hob/PeiHobLib.inf - - # - # DXE libraries - # - # EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/ArchProtocolLib.inf - # EdkCompatibilityPkg/Foundation/Efi/Protocol/EfiProtocolLib.inf - # EdkCompatibilityPkg/Foundation/Framework/Protocol/EdkFrameworkProtocolLib.inf - # EdkCompatibilityPkg/Foundation/Protocol/EdkProtocolLib.inf - # EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/EfiDriverLib.inf - # EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/EfiRuntimeLib.inf - # EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/Graphics.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/EfiUiLib/EfiUiLib.inf - - # - # Print/Graphics Library consume SetupBrowser Print Protocol - # - # EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/PrintLib.inf - # EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/Graphics.inf - -- 2.18.0.windows.1