From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga01.intel.com (mga01.intel.com []) by mx.groups.io with SMTP id smtpd.web12.9828.1616400599399990740 for ; Mon, 22 Mar 2021 01:10:02 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: dandan.bi@intel.com) IronPort-SDR: ghFgjui1IXTRZwOR/WGCPHet7/8WuiBuwY9sP6+vhUP7D+KnNrAVitloloEGDOJbTKU2PObE54 Q3TKX/U2dDLA== X-IronPort-AV: E=McAfee;i="6000,8403,9930"; a="210288382" X-IronPort-AV: E=Sophos;i="5.81,268,1610438400"; d="scan'208";a="210288382" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Mar 2021 01:10:02 -0700 IronPort-SDR: lmKQiaRg/20TA+KIHMdwtm4dKROwfqLbe21q8yztVvYYy/ObfAkBwfE7c52kK5YHjuIuMP1GCy XBFWqwulqs7A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,268,1610438400"; d="scan'208";a="375616352" Received: from shwdeopenpsi114.ccr.corp.intel.com ([10.239.154.141]) by orsmga006.jf.intel.com with ESMTP; 22 Mar 2021 01:10:00 -0700 From: "Dandan Bi" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao , Zhiguang Liu , Laszlo Ersek Subject: [patch V2 02/29] MdePkg: Add MdeLibs.dsc.inc file to MdePkg Date: Mon, 22 Mar 2021 16:09:14 +0800 Message-Id: <20210322080941.6780-3-dandan.bi@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20210322080941.6780-1-dandan.bi@intel.com> References: <20210322080941.6780-1-dandan.bi@intel.com> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246 MdeLibs.dsc.inc is added for some default libraries provided by MdePkg. Platform can include MdeLibs.dsc.inc file to avoid some potential incompatible changes to platform dsc file in future. Only add RegisterFilterLib into it as the first version of MdeLibs.dsc.inc. Can update and maintain MdeLibs.dsc.inc gradually later. "MdeLibs.dsc.inc" for the [LibraryClasses*] section(s) Cc: Michael D Kinney Cc: Liming Gao Cc: Zhiguang Liu Cc: Laszlo Ersek Signed-off-by: Dandan Bi --- MdePkg/MdeLibs.dsc.inc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 MdePkg/MdeLibs.dsc.inc diff --git a/MdePkg/MdeLibs.dsc.inc b/MdePkg/MdeLibs.dsc.inc new file mode 100644 index 0000000000..75e516c21a --- /dev/null +++ b/MdePkg/MdeLibs.dsc.inc @@ -0,0 +1,14 @@ +## @file +# Mde DSC include file for [LibraryClasses*] section of all Architectures. +# +# This file can be included to the [LibraryClasses*] section(s) of a platform DSC file +# by using "!include MdePkg/MdeLibs.dsc.inc" to specify the library instances +# of some EDKII basic/common library classes. +# +# Copyright (c) 2021, Intel Corporation. All rights reserved.
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## + + RegisterFilterLib|MdePkg/Library/RegisterFilterLibNull/RegisterFilterLibNull.inf -- 2.18.0.windows.1