public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Dandan Bi" <dandan.bi@intel.com>
To: devel@edk2.groups.io
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Subject: [edk2-platforms] [patch V2 09/35] Features/UserInterface: Consume MdeLibs.dsc.inc for RegisterFilterLib
Date: Mon, 22 Mar 2021 16:20:14 +0800	[thread overview]
Message-ID: <20210322082040.14104-10-dandan.bi@intel.com> (raw)
In-Reply-To: <20210322082040.14104-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: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 .../UserInterface/LogoFeaturePkg/Include/LogoFeature.dsc      | 4 +++-
 .../UserAuthFeaturePkg/Include/UserAuthFeature.dsc            | 4 +++-
 .../Include/VirtualKeyboardFeature.dsc                        | 4 +++-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/Features/Intel/UserInterface/LogoFeaturePkg/Include/LogoFeature.dsc b/Features/Intel/UserInterface/LogoFeaturePkg/Include/LogoFeature.dsc
index d2dcdeb36a..2e8b0f0693 100644
--- a/Features/Intel/UserInterface/LogoFeaturePkg/Include/LogoFeature.dsc
+++ b/Features/Intel/UserInterface/LogoFeaturePkg/Include/LogoFeature.dsc
@@ -4,11 +4,11 @@
 #
 # The DEC files are used by the utilities that parse DSC and
 # INF files to generate AutoGen.c and AutoGen.h files
 # for the build infrastructure.
 #
-# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2020 - 2021, Intel Corporation. All rights reserved.<BR>
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
 
@@ -32,10 +32,12 @@ [Defines]
 ################################################################################
 [LibraryClasses]
   #######################################
   # Edk2 Packages
   #######################################
+  !include MdePkg/MdeLibs.dsc.inc
+
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
   BaseMemoryLib|MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.inf
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
   UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
   UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
diff --git a/Features/Intel/UserInterface/UserAuthFeaturePkg/Include/UserAuthFeature.dsc b/Features/Intel/UserInterface/UserAuthFeaturePkg/Include/UserAuthFeature.dsc
index 7d784f4dff..6c2d8eb8ec 100644
--- a/Features/Intel/UserInterface/UserAuthFeaturePkg/Include/UserAuthFeature.dsc
+++ b/Features/Intel/UserInterface/UserAuthFeaturePkg/Include/UserAuthFeature.dsc
@@ -4,11 +4,11 @@
 #
 # The DEC files are used by the utilities that parse DSC and
 # INF files to generate AutoGen.c and AutoGen.h files
 # for the build infrastructure.
 #
-# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2020 - 2021, Intel Corporation. All rights reserved.<BR>
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
 
@@ -32,10 +32,12 @@ [Defines]
 ################################################################################
 [LibraryClasses]
   #######################################
   # Edk2 Packages
   #######################################
+  !include MdePkg/MdeLibs.dsc.inc
+
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
   BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
   DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
   HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
diff --git a/Features/Intel/UserInterface/VirtualKeyboardFeaturePkg/Include/VirtualKeyboardFeature.dsc b/Features/Intel/UserInterface/VirtualKeyboardFeaturePkg/Include/VirtualKeyboardFeature.dsc
index c10fb2d567..c6b9d287b7 100644
--- a/Features/Intel/UserInterface/VirtualKeyboardFeaturePkg/Include/VirtualKeyboardFeature.dsc
+++ b/Features/Intel/UserInterface/VirtualKeyboardFeaturePkg/Include/VirtualKeyboardFeature.dsc
@@ -4,11 +4,11 @@
 #
 # The DEC files are used by the utilities that parse DSC and
 # INF files to generate AutoGen.c and AutoGen.h files
 # for the build infrastructure.
 #
-# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2020 - 2021, Intel Corporation. All rights reserved.<BR>
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
 
@@ -32,10 +32,12 @@ [Defines]
 ################################################################################
 [LibraryClasses]
   #######################################
   # Edk2 Packages
   #######################################
+  !include MdePkg/MdeLibs.dsc.inc
+
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
   BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
   UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
   UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
-- 
2.18.0.windows.1


  parent reply	other threads:[~2021-03-22  8:21 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-22  8:20 [edk2-platforms] [patch V2 00/35] Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
2021-03-22  8:20 ` [edk2-platforms] [patch V2 01/35] Drivers/ASIX: " Dandan Bi
2021-03-22  8:20 ` [edk2-platforms] [patch V2 02/35] Drivers/DisplayLink: " Dandan Bi
2021-03-22  8:20 ` [edk2-platforms] [patch V2 03/35] Drivers/OptionRomPkg: " Dandan Bi
2021-03-25 23:31   ` Ni, Ray
2021-03-22  8:20 ` [edk2-platforms] [patch V2 04/35] Features/Debugging: " Dandan Bi
2021-03-22  8:20 ` [edk2-platforms] [patch V2 05/35] Features/Network: " Dandan Bi
2021-03-22  8:20 ` [edk2-platforms] [patch V2 06/35] Features/OutOfBandManagement: " Dandan Bi
2021-03-22  8:20 ` [edk2-platforms] [patch V2 07/35] Features/PowerManagement: " Dandan Bi
2021-03-22  8:20 ` [edk2-platforms] [patch V2 08/35] Features/SystemInformation: " Dandan Bi
2021-03-22  8:20 ` Dandan Bi [this message]
     [not found] ` <20210322082040.14104-21-dandan.bi@intel.com>
2021-03-23  2:18   ` [edk2-platforms] [patch V2 20/35] Platform/RISC-V: " Abner Chang
     [not found] ` <20210322082040.14104-22-dandan.bi@intel.com>
2021-03-23  2:18   ` [edk2-platforms] [patch V2 21/35] Platform/SiFive: " Abner Chang
     [not found] ` <20210322082040.14104-34-dandan.bi@intel.com>
2021-03-23  2:18   ` [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: " Abner Chang
     [not found] ` <20210322082040.14104-27-dandan.bi@intel.com>
2021-03-25 23:31   ` [edk2-platforms] [patch V2 26/35] Silicon/IntelSiliconPkg: " Ni, Ray

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210322082040.14104-10-dandan.bi@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox