From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com []) by mx.groups.io with SMTP id smtpd.web10.9842.1616747972382116660 for ; Fri, 26 Mar 2021 01:39:50 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: dandan.bi@intel.com) IronPort-SDR: XQOGE2nknf6OKZHrkWJO2boQQCO29RHcLEx9qAEsqmfOZdqqDEgvnRqjTQvD4c4kslKZEfRcev sh2FqtBOBfkQ== X-IronPort-AV: E=McAfee;i="6000,8403,9934"; a="170480885" X-IronPort-AV: E=Sophos;i="5.81,280,1610438400"; d="scan'208";a="170480885" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Mar 2021 01:39:49 -0700 IronPort-SDR: a/Cz26cdp93KhcAT/Vp41ABUTGOvL4Mmq3y/dI9QidgeO5ThGE47uvPW4SVrH14uIsrrLWEWNW GY3uymZGD2oA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,279,1610438400"; d="scan'208";a="377173662" Received: from unknown (HELO shwdeOpenPSI114.ccr.corp.intel.com) ([10.239.154.141]) by orsmga006.jf.intel.com with ESMTP; 26 Mar 2021 01:39:48 -0700 From: "Dandan Bi" To: devel@edk2.groups.io Cc: Michael D Kinney , Kelly Steele Subject: [edk2-platforms] [patch V3 15/35] Platform/QuarkPlatformPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib Date: Fri, 26 Mar 2021 16:39:02 +0800 Message-Id: <20210326083922.24340-16-dandan.bi@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20210326083922.24340-1-dandan.bi@intel.com> References: <20210326083922.24340-1-dandan.bi@intel.com> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246 MdeLibs.dsc.inc was added for some basic/default library instances provided by MdePkg and RegisterFilterLibNull Library was also added into it as the first version of MdeLibs.dsc.inc. So update platform dsc to consume MdeLibs.dsc.inc for RegisterFilterLibNull which will be consumed by IoLib and BaseLib. Cc: Michael D Kinney Cc: Kelly Steele Signed-off-by: Dandan Bi --- V3: Update plaftom dsc to consume the MdeLibs.dsc.inc outside the common [LibraryClasses] section since we can specify different [LibraryClasses] section for libary instances in MdeLibs.dsc.inc. --- Platform/Intel/QuarkPlatformPkg/Quark.dsc | 3 +++ Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Platform/Intel/QuarkPlatformPkg/Quark.dsc b/Platform/Intel/QuarkPlatformPkg/Quark.dsc index c58da58348..cc1eba4df4 100644 --- a/Platform/Intel/QuarkPlatformPkg/Quark.dsc +++ b/Platform/Intel/QuarkPlatformPkg/Quark.dsc @@ -67,10 +67,13 @@ [SkuIds] ################################################################################ # # Library Class section - list of all Library Classes needed by this Platform. # ################################################################################ + +!include MdePkg/MdeLibs.dsc.inc + [LibraryClasses] # # Entry point # PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf diff --git a/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc b/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc index 6fdfba9a58..993d698eec 100644 --- a/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc +++ b/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc @@ -55,10 +55,13 @@ [SkuIds] ################################################################################ # # Library Class section - list of all Library Classes needed by this Platform. # ################################################################################ + +!include MdePkg/MdeLibs.dsc.inc + [LibraryClasses] # # Entry point # PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf -- 2.18.0.windows.1