public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib
@ 2021-03-22  8:53 Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 11/35] Platform/ARM: " Dandan Bi
                   ` (24 more replies)
  0 siblings, 25 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/AMD/OverdriveBoard/OverdriveBoard.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc b/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc
index 05d1b69c83..0305dcd7eb 100644
--- a/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc
+++ b/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc
@@ -28,10 +28,12 @@ [Defines]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
 !if $(TARGET) == RELEASE
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
 !else
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
 !endif
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 11/35] Platform/ARM: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 12/35] Platform/BeagleBoard: " Dandan Bi
                   ` (23 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Thomas Abraham, Sami Mujawar

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Thomas Abraham <thomas.abraham@arm.com>
Cc: Sami Mujawar <sami.mujawar@arm.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/ARM/SgiPkg/PlatformStandaloneMm.dsc | 2 ++
 Platform/ARM/VExpressPkg/ArmVExpress.dsc.inc | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/Platform/ARM/SgiPkg/PlatformStandaloneMm.dsc b/Platform/ARM/SgiPkg/PlatformStandaloneMm.dsc
index 38bf6020ba..cf421b542f 100644
--- a/Platform/ARM/SgiPkg/PlatformStandaloneMm.dsc
+++ b/Platform/ARM/SgiPkg/PlatformStandaloneMm.dsc
@@ -31,10 +31,12 @@ [Defines]
 ################################################################################
 [LibraryClasses]
   #
   # Basic
   #
+  !include MdePkg/MdeLibs.dsc.inc
+
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
   BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
   DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
   ExtractGuidedSectionLib|EmbeddedPkg/Library/PrePiExtractGuidedSectionLib/PrePiExtractGuidedSectionLib.inf
diff --git a/Platform/ARM/VExpressPkg/ArmVExpress.dsc.inc b/Platform/ARM/VExpressPkg/ArmVExpress.dsc.inc
index fee7cfcc2d..83278bd6ee 100644
--- a/Platform/ARM/VExpressPkg/ArmVExpress.dsc.inc
+++ b/Platform/ARM/VExpressPkg/ArmVExpress.dsc.inc
@@ -26,10 +26,12 @@ [BuildOptions.common.EDKII.DXE_CORE,BuildOptions.common.EDKII.DXE_DRIVER,BuildOp
 [BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
   GCC:*_*_ARM_DLINK_FLAGS = -z common-page-size=0x1000
   GCC:*_*_AARCH64_DLINK_FLAGS = -z common-page-size=0x10000
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
 !if $(TARGET) == RELEASE
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
 !else
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
 !endif
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 12/35] Platform/BeagleBoard: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 11/35] Platform/ARM: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 13/35] Platform/BoardModulePkg: " Dandan Bi
                   ` (22 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc b/Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc
index c5fc978c5f..030126564a 100644
--- a/Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc
+++ b/Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc
@@ -1,10 +1,10 @@
 #/** @file
 # Beagle board package.
 #
 # Copyright (c) 2009 - 2010, Apple Inc. All rights reserved.<BR>
-# Copyright (c) 2015 - 2019, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2015 - 2021, Intel Corporation. All rights reserved.<BR>
 # Copyright (c) 2016, Linaro Ltd. All rights reserved.<BR>
 #
 #    SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 #**/
@@ -25,10 +25,12 @@ [Defines]
   SKUID_IDENTIFIER               = DEFAULT
   FLASH_DEFINITION               = Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.fdf
 
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   ArmLib|ArmPkg/Library/ArmLib/ArmBaseLib.inf
   ArmMmuLib|ArmPkg/Library/ArmMmuLib/ArmMmuBaseLib.inf
   ArmPlatformLib|Platform/BeagleBoard/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf
   ArmPlatformStackLib|ArmPlatformPkg/Library/ArmPlatformStackLib/ArmPlatformStackLib.inf
   ArmSmcLib|ArmPkg/Library/ArmSmcLib/ArmSmcLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 13/35] Platform/BoardModulePkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 11/35] Platform/ARM: " Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 12/35] Platform/BeagleBoard: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 14/35] Platform/MinPlatformPkg: " Dandan Bi
                   ` (21 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Eric Dong, Liming Gao

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: Eric Dong <eric.dong@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/Intel/BoardModulePkg/BoardModulePkg.dsc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Platform/Intel/BoardModulePkg/BoardModulePkg.dsc b/Platform/Intel/BoardModulePkg/BoardModulePkg.dsc
index bcc2dfbfeb..371f39a195 100644
--- a/Platform/Intel/BoardModulePkg/BoardModulePkg.dsc
+++ b/Platform/Intel/BoardModulePkg/BoardModulePkg.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) 2019, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2019 - 2021, Intel Corporation. All rights reserved.<BR>
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
 
@@ -21,10 +21,12 @@ [Defines]
   SUPPORTED_ARCHITECTURES        = IA32|X64
   BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
   SKUID_IDENTIFIER               = DEFAULT
 
 [LibraryClasses]
+  !include MdePkg/MdeLibs.dsc.inc
+
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
   BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
   PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
   PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
   UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 14/35] Platform/MinPlatformPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (2 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 13/35] Platform/BoardModulePkg: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 15/35] Platform/QuarkPlatformPkg: " Dandan Bi
                   ` (20 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Chasel Chiu, Nate DeSimone, Liming Gao, Eric Dong

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: Chasel Chiu <chasel.chiu@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Eric Dong <eric.dong@intel.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc
index bcabb797e9..fa1ba8f27c 100644
--- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc
+++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc
@@ -1,19 +1,21 @@
 ## @file
 #  Platform description.
 #
-# Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2017 - 2021, Intel Corporation. All rights reserved.<BR>
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
 
   #
   # Generic EDKII Lib
   #
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   #
   # Entry point
   #
   PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
   PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 15/35] Platform/QuarkPlatformPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (3 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 14/35] Platform/MinPlatformPkg: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-25 17:27   ` Steele, Kelly
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 16/35] Platform/Vlv2TbltDevicePkg: " Dandan Bi
                   ` (19 subsequent siblings)
  24 siblings, 1 reply; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Michael D Kinney, Kelly Steele

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 <michael.d.kinney@intel.com>
Cc: Kelly Steele <kelly.steele@intel.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/Intel/QuarkPlatformPkg/Quark.dsc    | 2 ++
 Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/Platform/Intel/QuarkPlatformPkg/Quark.dsc b/Platform/Intel/QuarkPlatformPkg/Quark.dsc
index c58da58348..c2643c2ae9 100644
--- a/Platform/Intel/QuarkPlatformPkg/Quark.dsc
+++ b/Platform/Intel/QuarkPlatformPkg/Quark.dsc
@@ -68,10 +68,12 @@ [SkuIds]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses]
+  !include MdePkg/MdeLibs.dsc.inc
+
   #
   # Entry point
   #
   PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
   PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
diff --git a/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc b/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc
index 6fdfba9a58..b7931e20ce 100644
--- a/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc
+++ b/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc
@@ -56,10 +56,12 @@ [SkuIds]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses]
+  !include MdePkg/MdeLibs.dsc.inc
+
   #
   # Entry point
   #
   PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
   PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 16/35] Platform/Vlv2TbltDevicePkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (4 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 15/35] Platform/QuarkPlatformPkg: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 17/35] Platform/LeMaker: " Dandan Bi
                   ` (18 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Michael D Kinney, Zailiang Sun, Yi Qian

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 <michael.d.kinney@intel.com>
Cc: Zailiang Sun <zailiang.sun@intel.com>
Cc: Yi Qian <yi.qian@intel.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc | 4 +++-
 Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc  | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc b/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc
index 409f31c982..7c5835f8ad 100644
--- a/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc
+++ b/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc
@@ -1,9 +1,9 @@
 #/** @file
 # Platform description.
 #
-# Copyright (c) 2012  - 2020, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2012  - 2021, Intel Corporation. All rights reserved.<BR>
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 #
 #**/
@@ -62,10 +62,12 @@ [DefaultStores]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   #
   # Entry point
   #
   PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
   PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
diff --git a/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc b/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc
index 38bd825c8b..f07d1f59ae 100644
--- a/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc
+++ b/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc
@@ -1,9 +1,9 @@
 #/** @file
 # Platform description.
 #
-# Copyright (c) 2012  - 2020, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2012  - 2021, Intel Corporation. All rights reserved.<BR>
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 #
 #**/
@@ -64,10 +64,12 @@ [DefaultStores]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   #
   # Entry point
   #
   PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
   PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 17/35] Platform/LeMaker: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (5 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 16/35] Platform/Vlv2TbltDevicePkg: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 18/35] Platform/Qemu: " Dandan Bi
                   ` (17 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/LeMaker/CelloBoard/CelloBoard.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Platform/LeMaker/CelloBoard/CelloBoard.dsc b/Platform/LeMaker/CelloBoard/CelloBoard.dsc
index 26bbbb2497..6359ab8483 100644
--- a/Platform/LeMaker/CelloBoard/CelloBoard.dsc
+++ b/Platform/LeMaker/CelloBoard/CelloBoard.dsc
@@ -34,10 +34,12 @@ [Defines]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
 !if $(TARGET) == RELEASE
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
 !else
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
 !endif
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 18/35] Platform/Qemu: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (6 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 17/35] Platform/LeMaker: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 19/35] Platform/RaspberryPi: " Dandan Bi
                   ` (16 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm, Graeme Gregory, Radoslaw Biernacki

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Graeme Gregory <graeme@nuviainc.com>
Cc: Radoslaw Biernacki <rad@semihalf.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/Qemu/SbsaQemu/SbsaQemu.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Platform/Qemu/SbsaQemu/SbsaQemu.dsc b/Platform/Qemu/SbsaQemu/SbsaQemu.dsc
index c1f8a46965..a561bb15f7 100644
--- a/Platform/Qemu/SbsaQemu/SbsaQemu.dsc
+++ b/Platform/Qemu/SbsaQemu/SbsaQemu.dsc
@@ -40,10 +40,12 @@ [Defines]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
 !if $(TARGET) == RELEASE
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
 !else
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
 !endif
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 19/35] Platform/RaspberryPi: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (7 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 18/35] Platform/Qemu: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22 12:56   ` Pete Batard
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 20/35] Platform/RISC-V: " Dandan Bi
                   ` (15 subsequent siblings)
  24 siblings, 1 reply; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm, Pete Batard

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Pete Batard <pete@akeo.ie>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/RaspberryPi/RPi3/RPi3.dsc | 4 +++-
 Platform/RaspberryPi/RPi4/RPi4.dsc | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/Platform/RaspberryPi/RPi3/RPi3.dsc b/Platform/RaspberryPi/RPi3/RPi3.dsc
index 107cbda297..969d723af1 100644
--- a/Platform/RaspberryPi/RPi3/RPi3.dsc
+++ b/Platform/RaspberryPi/RPi3/RPi3.dsc
@@ -1,10 +1,10 @@
 # @file
 #
 #  Copyright (c) 2011 - 2020, ARM Limited. All rights reserved.
 #  Copyright (c) 2014, Linaro Limited. All rights reserved.
-#  Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.
+#  Copyright (c) 2015 - 2021, Intel Corporation. All rights reserved.
 #  Copyright (c) 2017 - 2018, Andrei Warkentin <andrey.warkentin@gmail.com>
 #
 #  SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
@@ -53,10 +53,12 @@ [Defines]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
 !if $(TARGET) == RELEASE
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
 !else
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
 !endif
diff --git a/Platform/RaspberryPi/RPi4/RPi4.dsc b/Platform/RaspberryPi/RPi4/RPi4.dsc
index e0fad6f744..ef1224b1f7 100644
--- a/Platform/RaspberryPi/RPi4/RPi4.dsc
+++ b/Platform/RaspberryPi/RPi4/RPi4.dsc
@@ -1,10 +1,10 @@
 # @file
 #
 #  Copyright (c) 2011 - 2020, ARM Limited. All rights reserved.
 #  Copyright (c) 2017 - 2018, Andrei Warkentin <andrey.warkentin@gmail.com>
-#  Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.
+#  Copyright (c) 2015 - 2021, Intel Corporation. All rights reserved.
 #  Copyright (c) 2014, Linaro Limited. All rights reserved.
 #
 #  SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
@@ -51,10 +51,12 @@ [Defines]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
 !if $(TARGET) == RELEASE
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
 !else
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
 !endif
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 20/35] Platform/RISC-V: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (8 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 19/35] Platform/RaspberryPi: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-23  2:19   ` Abner Chang
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 21/35] Platform/SiFive: " Dandan Bi
                   ` (14 subsequent siblings)
  24 siblings, 1 reply; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Abner Chang, Daniel Schaefer, Gilbert Chen

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: Abner Chang <abner.chang@hpe.com>
Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
Cc: Gilbert Chen <gilbert.chen@hpe.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/RISC-V/PlatformPkg/RiscVPlatformPkg.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Platform/RISC-V/PlatformPkg/RiscVPlatformPkg.dsc b/Platform/RISC-V/PlatformPkg/RiscVPlatformPkg.dsc
index 092717d2ef..78a737317f 100644
--- a/Platform/RISC-V/PlatformPkg/RiscVPlatformPkg.dsc
+++ b/Platform/RISC-V/PlatformPkg/RiscVPlatformPkg.dsc
@@ -35,10 +35,12 @@ [BuildOptions]
 ################################################################################
 [SkuIds]
   0|DEFAULT
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   RiscVOpensbiPlatformLib|Platform/RISC-V/PlatformPkg/Library/OpensbiPlatformLibNull/OpensbiPlatformLibNull.inf
   RiscVCpuLib|Silicon/RISC-V/ProcessorPkg/Library/RiscVCpuLib/RiscVCpuLib.inf
   RiscVEdk2SbiLib|Silicon/RISC-V/ProcessorPkg/Library/RiscVEdk2SbiLib/RiscVEdk2SbiLib.inf
   RiscVOpensbiLib|Silicon/RISC-V/ProcessorPkg/Library/RiscVOpensbiLib/RiscVOpensbiLib.inf
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 21/35] Platform/SiFive: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (9 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 20/35] Platform/RISC-V: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-23  2:19   ` Abner Chang
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 22/35] Platform/Socionext: " Dandan Bi
                   ` (13 subsequent siblings)
  24 siblings, 1 reply; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Abner Chang, Daniel Schaefer, Gilbert Chen

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: Abner Chang <abner.chang@hpe.com>
Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
Cc: Gilbert Chen <gilbert.chen@hpe.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc      | 2 ++
 .../SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.dsc | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc b/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
index 2d652d215f..8e66d82863 100644
--- a/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
+++ b/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
@@ -59,10 +59,12 @@ [SkuIds]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses]
+  !include MdePkg/MdeLibs.dsc.inc
+
   PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
   PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
   BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
   SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
diff --git a/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.dsc b/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.dsc
index 9f60475189..bce0c21501 100644
--- a/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.dsc
+++ b/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.dsc
@@ -59,10 +59,12 @@ [SkuIds]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses]
+  !include MdePkg/MdeLibs.dsc.inc
+
   PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
   PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
   BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
   SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 22/35] Platform/Socionext: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (10 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 21/35] Platform/SiFive: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 23/35] Platform/SoftIron: " Dandan Bi
                   ` (12 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/Socionext/DeveloperBox/DeveloperBox.dsc.inc         | 2 ++
 Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/Platform/Socionext/DeveloperBox/DeveloperBox.dsc.inc b/Platform/Socionext/DeveloperBox/DeveloperBox.dsc.inc
index 0a364bc457..fc90aeb028 100644
--- a/Platform/Socionext/DeveloperBox/DeveloperBox.dsc.inc
+++ b/Platform/Socionext/DeveloperBox/DeveloperBox.dsc.inc
@@ -22,10 +22,12 @@ [BuildOptions.common.EDKII.DXE_CORE,BuildOptions.common.EDKII.DXE_DRIVER,BuildOp
 [BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
   GCC:*_*_ARM_DLINK_FLAGS = -z common-page-size=0x1000
   GCC:*_*_AARCH64_DLINK_FLAGS = -z common-page-size=0x10000
 
 [LibraryClasses]
+  !include MdePkg/MdeLibs.dsc.inc
+
   ArmPlatformLib|Silicon/Socionext/SynQuacer/Library/SynQuacerLib/SynQuacerLib.inf
   ArmHvcLib|ArmPkg/Library/ArmHvcLib/ArmHvcLib.inf
   ArmSmcLib|ArmPkg/Library/ArmSmcLib/ArmSmcLib.inf
 
   TimerLib|ArmPkg/Library/ArmArchTimerLib/ArmArchTimerLib.inf
diff --git a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc
index 18accbfd5d..e3b3c80cdf 100644
--- a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc
+++ b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc
@@ -38,10 +38,12 @@ [BuildOptions.common.EDKII.DXE_CORE,BuildOptions.common.EDKII.DXE_DRIVER,BuildOp
 [BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
   GCC:*_*_ARM_DLINK_FLAGS = -z common-page-size=0x1000
   GCC:*_*_AARCH64_DLINK_FLAGS = -z common-page-size=0x10000
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   ArmPlatformLib|Silicon/Socionext/SynQuacer/Library/SynQuacerLib/SynQuacerLib.inf
   ArmHvcLib|ArmPkg/Library/ArmHvcLib/ArmHvcLib.inf
   ArmSmcLib|ArmPkg/Library/ArmSmcLib/ArmSmcLib.inf
 
   TimerLib|ArmPkg/Library/ArmArchTimerLib/ArmArchTimerLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 23/35] Platform/SoftIron: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (11 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 22/35] Platform/Socionext: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 24/35] Silicon/Hisilicon: " Dandan Bi
                   ` (11 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc b/Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc
index dd45b4142c..d959701bc8 100644
--- a/Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc
+++ b/Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc
@@ -35,10 +35,12 @@ [Defines]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
 !if $(TARGET) == RELEASE
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
 !else
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
 !endif
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 24/35] Silicon/Hisilicon: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (12 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 23/35] Platform/SoftIron: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 25/35] Silicon/CoffeelakeSiliconPkg: " Dandan Bi
                   ` (10 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Leif Lindholm, Ard Biesheuvel, Wenyi Xie

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: Leif Lindholm <leif@nuviainc.com>
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Wenyi Xie <xiewenyi2@huawei.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/Hisilicon/Hisilicon.dsc.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Silicon/Hisilicon/Hisilicon.dsc.inc b/Silicon/Hisilicon/Hisilicon.dsc.inc
index 6bacd9cafd..3305b11cba 100644
--- a/Silicon/Hisilicon/Hisilicon.dsc.inc
+++ b/Silicon/Hisilicon/Hisilicon.dsc.inc
@@ -6,10 +6,12 @@
 #  SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 #
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
 !if $(TARGET) == RELEASE
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
 !else
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
 !endif
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 25/35] Silicon/CoffeelakeSiliconPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (13 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 24/35] Silicon/Hisilicon: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 26/35] Silicon/IntelSiliconPkg: " Dandan Bi
                   ` (9 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Chasel Chiu, Sai Chaganty

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: Chasel Chiu <chasel.chiu@intel.com>
Cc: Sai Chaganty <rangasai.v.chaganty@intel.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/Intel/CoffeelakeSiliconPkg/CoffeelakeSiliconPkg.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Silicon/Intel/CoffeelakeSiliconPkg/CoffeelakeSiliconPkg.dsc b/Silicon/Intel/CoffeelakeSiliconPkg/CoffeelakeSiliconPkg.dsc
index 2f25bdb35e..defef9e400 100644
--- a/Silicon/Intel/CoffeelakeSiliconPkg/CoffeelakeSiliconPkg.dsc
+++ b/Silicon/Intel/CoffeelakeSiliconPkg/CoffeelakeSiliconPkg.dsc
@@ -78,10 +78,12 @@ [Defines]
   # Definition for Build Flag
   #
   !include $(PLATFORM_SI_PACKAGE)/SiPkgBuildOption.dsc
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   #
   # Entry point
   #
   PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
   PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 26/35] Silicon/IntelSiliconPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (14 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 25/35] Silicon/CoffeelakeSiliconPkg: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-25 23:32   ` [edk2-devel] " Ni, Ray
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 27/35] Silicon/KabylakeSiliconPkg: " Dandan Bi
                   ` (8 subsequent siblings)
  24 siblings, 1 reply; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Ray Ni, Rangasai V Chaganty

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: Ray Ni <ray.ni@intel.com>
Cc: Rangasai V Chaganty <rangasai.v.chaganty@intel.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc b/Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc
index 6dff68f681..62e405e1d5 100644
--- a/Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc
+++ b/Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc
@@ -1,9 +1,9 @@
 ## @file
 # This package provides common open source Intel silicon modules.
 #
-# Copyright (c) 2017 - 2020, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2017 - 2021, Intel Corporation. All rights reserved.<BR>
 # Copyright (c) Microsoft Corporation.<BR>
 #
 #    SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
@@ -17,10 +17,12 @@ [Defines]
   SUPPORTED_ARCHITECTURES        = IA32|X64
   BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
   SKUID_IDENTIFIER               = DEFAULT
 
 [LibraryClasses]
+  !include MdePkg/MdeLibs.dsc.inc
+
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
   BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
   PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
   DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 27/35] Silicon/KabylakeSiliconPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (15 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 26/35] Silicon/IntelSiliconPkg: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 28/35] Silicon/QuarkSocPkg: " Dandan Bi
                   ` (7 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Chasel Chiu, Sai Chaganty

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: Chasel Chiu <chasel.chiu@intel.com>
Cc: Sai Chaganty <rangasai.v.chaganty@intel.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/Intel/KabylakeSiliconPkg/KabylakeSiliconPkg.dsc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Silicon/Intel/KabylakeSiliconPkg/KabylakeSiliconPkg.dsc b/Silicon/Intel/KabylakeSiliconPkg/KabylakeSiliconPkg.dsc
index aa481d0307..7332103075 100644
--- a/Silicon/Intel/KabylakeSiliconPkg/KabylakeSiliconPkg.dsc
+++ b/Silicon/Intel/KabylakeSiliconPkg/KabylakeSiliconPkg.dsc
@@ -1,9 +1,9 @@
 ## @file
 #  Component description file for the SkyLake SiPkg DSC file.
 #
-# Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2017 - 2021, Intel Corporation. All rights reserved.<BR>
 #
 # SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
 
@@ -69,10 +69,12 @@ [Defines]
   # Definition for Build Flag
   #
   !include $(PLATFORM_SI_PACKAGE)/SiPkgBuildOption.dsc
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   #
   # Entry point
   #
   PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
   PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 28/35] Silicon/QuarkSocPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (16 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 27/35] Silicon/KabylakeSiliconPkg: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-25 17:26   ` Steele, Kelly
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 29/35] Silicon/TigerlakeSiliconPkg: " Dandan Bi
                   ` (6 subsequent siblings)
  24 siblings, 1 reply; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Michael D Kinney, Kelly Steele

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 <michael.d.kinney@intel.com>
Cc: Kelly Steele <kelly.steele@intel.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/Intel/QuarkSocPkg/QuarkSocPkg.dsc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Silicon/Intel/QuarkSocPkg/QuarkSocPkg.dsc b/Silicon/Intel/QuarkSocPkg/QuarkSocPkg.dsc
index e743a5e272..815ca74dbc 100644
--- a/Silicon/Intel/QuarkSocPkg/QuarkSocPkg.dsc
+++ b/Silicon/Intel/QuarkSocPkg/QuarkSocPkg.dsc
@@ -2,11 +2,11 @@
 # INTEL Quark SoC Module Package Reference Implementations
 #
 # This DSC file is used for Package Level build.
 #
 # This Module provides FRAMEWORK reference implementation for INTEL Quark SoC.
-#   Copyright (c) 2013-2016 Intel Corporation.
+#   Copyright (c) 2013-2021 Intel Corporation.
 #
 #   SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
 
@@ -38,10 +38,12 @@ [SkuIds]
 #
 # Library Class section - list of all Library Classes needed by this Platform.
 #
 ################################################################################
 [LibraryClasses]
+  !include MdePkg/MdeLibs.dsc.inc
+
   #
   # Entry point
   #
   PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
   UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 29/35] Silicon/TigerlakeSiliconPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (17 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 28/35] Silicon/QuarkSocPkg: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 30/35] Silicon/Marvell: " Dandan Bi
                   ` (5 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Sai Chaganty, Nate DeSimone, Heng Luo

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: Sai Chaganty <rangasai.v.chaganty@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Heng Luo <heng.luo@intel.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/Intel/TigerlakeSiliconPkg/TigerlakeSiliconPkg.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Silicon/Intel/TigerlakeSiliconPkg/TigerlakeSiliconPkg.dsc b/Silicon/Intel/TigerlakeSiliconPkg/TigerlakeSiliconPkg.dsc
index 73a2594887..40e44e4599 100644
--- a/Silicon/Intel/TigerlakeSiliconPkg/TigerlakeSiliconPkg.dsc
+++ b/Silicon/Intel/TigerlakeSiliconPkg/TigerlakeSiliconPkg.dsc
@@ -91,10 +91,12 @@ [Defines]
   # Definition for Build Flag
   #
   !include $(PLATFORM_SI_PACKAGE)/SiPkgBuildOption.dsc
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   #
   # Entry point
   #
   PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
   PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 30/35] Silicon/Marvell: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (18 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 29/35] Silicon/TigerlakeSiliconPkg: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 31/35] Silicon/NXP: " Dandan Bi
                   ` (4 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Marcin Wojtas, Leif Lindholm

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: Marcin Wojtas <mw@semihalf.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc b/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc
index 4cdafe8b1f..a66cd05a25 100644
--- a/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc
+++ b/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc
@@ -3,10 +3,12 @@
 #Copyright (C) 2016 Marvell International Ltd.
 #
 #SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   ArmadaIcuLib|Silicon/Marvell/Library/IcuLib/IcuLib.inf
   ArmadaSoCDescLib|Silicon/Marvell/Armada7k8k/Library/Armada7k8kSoCDescLib/Armada7k8kSoCDescLib.inf
   ArmPlatformLib|Silicon/Marvell/Armada7k8k/Library/Armada7k8kLib/Armada7k8kLib.inf
   ComPhyLib|Silicon/Marvell/Library/ComPhyLib/ComPhyLib.inf
   MppLib|Silicon/Marvell/Library/MppLib/MppLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 31/35] Silicon/NXP: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (19 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 30/35] Silicon/Marvell: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 32/35] Silicon/Openmoko: " Dandan Bi
                   ` (3 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Leif Lindholm, Meenakshi Aggarwal

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: Leif Lindholm <leif@nuviainc.com>
Cc: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/NXP/NxpQoriqLs.dsc.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Silicon/NXP/NxpQoriqLs.dsc.inc b/Silicon/NXP/NxpQoriqLs.dsc.inc
index 99a317aba7..0ed1268912 100644
--- a/Silicon/NXP/NxpQoriqLs.dsc.inc
+++ b/Silicon/NXP/NxpQoriqLs.dsc.inc
@@ -21,10 +21,12 @@ [Defines]
   SUPPORTED_ARCHITECTURES        = AARCH64
   BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
   SKUID_IDENTIFIER               = DEFAULT
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   ArmLib|ArmPkg/Library/ArmLib/ArmBaseLib.inf
   ArmMmuLib|ArmPkg/Library/ArmMmuLib/ArmMmuBaseLib.inf
   ArmSmcLib|ArmPkg/Library/ArmSmcLib/ArmSmcLib.inf
   ArmGenericTimerCounterLib|ArmPkg/Library/ArmGenericTimerPhyCounterLib/ArmGenericTimerPhyCounterLib.inf
   TimerLib|ArmPkg/Library/ArmArchTimerLib/ArmArchTimerLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 32/35] Silicon/Openmoko: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (20 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 31/35] Silicon/NXP: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: " Dandan Bi
                   ` (2 subsequent siblings)
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/Openmoko/Openmoko.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Silicon/Openmoko/Openmoko.dsc b/Silicon/Openmoko/Openmoko.dsc
index 572be3d730..878b1c35d6 100644
--- a/Silicon/Openmoko/Openmoko.dsc
+++ b/Silicon/Openmoko/Openmoko.dsc
@@ -14,10 +14,12 @@ [Defines]
   SUPPORTED_ARCHITECTURES        = AARCH64|ARM|EBC|IA32|IA64|X64
   BUILD_TARGETS                  = DEBUG|RELEASE
   SKUID_IDENTIFIER               = DEFAULT
 
 [LibraryClasses]
+  !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
   MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (21 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 32/35] Silicon/Openmoko: " Dandan Bi
@ 2021-03-22  8:53 ` Dandan Bi
  2021-03-23  2:19   ` Abner Chang
  2021-03-22  8:54 ` [edk2-platforms] [patch V2 34/35] Silicon/Synopsys/DesignWare: " Dandan Bi
  2021-03-22  8:54 ` [edk2-platforms] [patch V2 35/35] Silicon/TexasInstruments: " Dandan Bi
  24 siblings, 1 reply; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:53 UTC (permalink / raw)
  To: devel; +Cc: Abner Chang, Daniel Schaefer, Gilbert Chen

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: Abner Chang <abner.chang@hpe.com>
Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
Cc: Gilbert Chen <gilbert.chen@hpe.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/RISC-V/ProcessorPkg/RiscVProcessorPkg.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Silicon/RISC-V/ProcessorPkg/RiscVProcessorPkg.dsc b/Silicon/RISC-V/ProcessorPkg/RiscVProcessorPkg.dsc
index 5f88f5e89f..3bdb394cb4 100644
--- a/Silicon/RISC-V/ProcessorPkg/RiscVProcessorPkg.dsc
+++ b/Silicon/RISC-V/ProcessorPkg/RiscVProcessorPkg.dsc
@@ -35,10 +35,12 @@ [BuildOptions]
 ################################################################################
 [SkuIds]
   0|DEFAULT
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   CpuExceptionHandlerLib|Silicon/RISC-V/ProcessorPkg/Library/RiscVExceptionLib/CpuExceptionHandlerDxeLib.inf
   RiscVCpuLib|Silicon/RISC-V/ProcessorPkg/Library/RiscVCpuLib/RiscVCpuLib.inf
   RiscVEdk2SbiLib|Silicon/RISC-V/ProcessorPkg/Library/RiscVEdk2SbiLib/RiscVEdk2SbiLib.inf
   RiscVOpensbiLib|Silicon/RISC-V/ProcessorPkg/Library/RiscVOpensbiLib/RiscVOpensbiLib.inf
   TimerLib|Silicon/RISC-V/ProcessorPkg/Library/RiscVTimerLib/BaseRiscVTimerLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 34/35] Silicon/Synopsys/DesignWare: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (22 preceding siblings ...)
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: " Dandan Bi
@ 2021-03-22  8:54 ` Dandan Bi
  2021-03-22  8:54 ` [edk2-platforms] [patch V2 35/35] Silicon/TexasInstruments: " Dandan Bi
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:54 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/Synopsys/DesignWare/DesignWare.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Silicon/Synopsys/DesignWare/DesignWare.dsc b/Silicon/Synopsys/DesignWare/DesignWare.dsc
index 098bba3f7d..43589bc6ca 100755
--- a/Silicon/Synopsys/DesignWare/DesignWare.dsc
+++ b/Silicon/Synopsys/DesignWare/DesignWare.dsc
@@ -14,10 +14,12 @@ [Defines]
   SUPPORTED_ARCHITECTURES        = AARCH64|ARM
   BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
   SKUID_IDENTIFIER               = DEFAULT
 
 [LibraryClasses]
+  !include MdePkg/MdeLibs.dsc.inc
+
   ArmGenericTimerCounterLib|ArmPkg/Library/ArmGenericTimerPhyCounterLib/ArmGenericTimerPhyCounterLib.inf
   ArmLib|ArmPkg/Library/ArmLib/ArmBaseLib.inf
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
   BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
   CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* [edk2-platforms] [patch V2 35/35] Silicon/TexasInstruments: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
                   ` (23 preceding siblings ...)
  2021-03-22  8:54 ` [edk2-platforms] [patch V2 34/35] Silicon/Synopsys/DesignWare: " Dandan Bi
@ 2021-03-22  8:54 ` Dandan Bi
  24 siblings, 0 replies; 34+ messages in thread
From: Dandan Bi @ 2021-03-22  8:54 UTC (permalink / raw)
  To: devel; +Cc: Ard Biesheuvel, Leif Lindholm

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: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/TexasInstruments/Omap35xxPkg/Omap35xxPkg.dsc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Silicon/TexasInstruments/Omap35xxPkg/Omap35xxPkg.dsc b/Silicon/TexasInstruments/Omap35xxPkg/Omap35xxPkg.dsc
index 18ebc4aedf..1462e044f4 100644
--- a/Silicon/TexasInstruments/Omap35xxPkg/Omap35xxPkg.dsc
+++ b/Silicon/TexasInstruments/Omap35xxPkg/Omap35xxPkg.dsc
@@ -22,10 +22,12 @@ [Defines]
   SUPPORTED_ARCHITECTURES        = ARM
   BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
   SKUID_IDENTIFIER               = DEFAULT
 
 [LibraryClasses.common]
+  !include MdePkg/MdeLibs.dsc.inc
+
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
 
   ArmLib|ArmPkg/Library/ArmLib/ArmBaseLib.inf
   MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
 
-- 
2.18.0.windows.1


^ permalink raw reply related	[flat|nested] 34+ messages in thread

* Re: [edk2-platforms] [patch V2 19/35] Platform/RaspberryPi: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 19/35] Platform/RaspberryPi: " Dandan Bi
@ 2021-03-22 12:56   ` Pete Batard
  0 siblings, 0 replies; 34+ messages in thread
From: Pete Batard @ 2021-03-22 12:56 UTC (permalink / raw)
  To: Dandan Bi, devel; +Cc: Ard Biesheuvel, Leif Lindholm

On 2021.03.22 08:53, Dandan Bi wrote:
> 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: Ard Biesheuvel <ardb+tianocore@kernel.org>
> Cc: Leif Lindholm <leif@nuviainc.com>
> Cc: Pete Batard <pete@akeo.ie>
> Signed-off-by: Dandan Bi <dandan.bi@intel.com>
> ---
>   Platform/RaspberryPi/RPi3/RPi3.dsc | 4 +++-
>   Platform/RaspberryPi/RPi4/RPi4.dsc | 4 +++-
>   2 files changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/Platform/RaspberryPi/RPi3/RPi3.dsc b/Platform/RaspberryPi/RPi3/RPi3.dsc
> index 107cbda297..969d723af1 100644
> --- a/Platform/RaspberryPi/RPi3/RPi3.dsc
> +++ b/Platform/RaspberryPi/RPi3/RPi3.dsc
> @@ -1,10 +1,10 @@
>   # @file
>   #
>   #  Copyright (c) 2011 - 2020, ARM Limited. All rights reserved.
>   #  Copyright (c) 2014, Linaro Limited. All rights reserved.
> -#  Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.
> +#  Copyright (c) 2015 - 2021, Intel Corporation. All rights reserved.
>   #  Copyright (c) 2017 - 2018, Andrei Warkentin <andrey.warkentin@gmail.com>
>   #
>   #  SPDX-License-Identifier: BSD-2-Clause-Patent
>   #
>   ##
> @@ -53,10 +53,12 @@ [Defines]
>   #
>   # Library Class section - list of all Library Classes needed by this Platform.
>   #
>   ################################################################################
>   [LibraryClasses.common]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>   !if $(TARGET) == RELEASE
>     DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
>   !else
>     DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
>   !endif
> diff --git a/Platform/RaspberryPi/RPi4/RPi4.dsc b/Platform/RaspberryPi/RPi4/RPi4.dsc
> index e0fad6f744..ef1224b1f7 100644
> --- a/Platform/RaspberryPi/RPi4/RPi4.dsc
> +++ b/Platform/RaspberryPi/RPi4/RPi4.dsc
> @@ -1,10 +1,10 @@
>   # @file
>   #
>   #  Copyright (c) 2011 - 2020, ARM Limited. All rights reserved.
>   #  Copyright (c) 2017 - 2018, Andrei Warkentin <andrey.warkentin@gmail.com>
> -#  Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.
> +#  Copyright (c) 2015 - 2021, Intel Corporation. All rights reserved.
>   #  Copyright (c) 2014, Linaro Limited. All rights reserved.
>   #
>   #  SPDX-License-Identifier: BSD-2-Clause-Patent
>   #
>   ##
> @@ -51,10 +51,12 @@ [Defines]
>   #
>   # Library Class section - list of all Library Classes needed by this Platform.
>   #
>   ################################################################################
>   [LibraryClasses.common]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>   !if $(TARGET) == RELEASE
>     DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
>   !else
>     DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
>   !endif
> 

Reviewed-by: Pete Batard <pete@akeo.ie>


^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [edk2-platforms] [patch V2 21/35] Platform/SiFive: Consume MdeLibs.dsc.inc for RegisterFilterLib
       [not found] ` <20210322082040.14104-22-dandan.bi@intel.com>
@ 2021-03-23  2:18   ` Abner Chang
  0 siblings, 0 replies; 34+ messages in thread
From: Abner Chang @ 2021-03-23  2:18 UTC (permalink / raw)
  To: Dandan Bi, devel@edk2.groups.io; +Cc: Schaefer, Daniel, Chen, Gilbert

Reviewed-by: Abner Chang <abner.chang@hpe.com>

> -----Original Message-----
> From: Dandan Bi [mailto:dandan.bi@intel.com]
> Sent: Monday, March 22, 2021 4:20 PM
> To: devel@edk2.groups.io
> Cc: Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>;
> Schaefer, Daniel <daniel.schaefer@hpe.com>; Chen, Gilbert
> <gilbert.chen@hpe.com>
> Subject: [edk2-platforms] [patch V2 21/35] Platform/SiFive: Consume
> MdeLibs.dsc.inc for RegisterFilterLib
> 
> REF: INVALID URI REMOVED
> 3A__bugzilla.tianocore.org_show-5Fbug.cgi-3Fid-
> 3D3246&d=DwIBAg&c=C5b8zRQO1miGmBeVZ2LFWg&r=_SN6FZBN4Vgi4Ulks
> kz6qU3NYRO03nHp9P7Z5q59A3E&m=jv-
> Sqmyi65KaeOTmUoxighDAOojpy7Rj3pwxnxyDd6c&s=kgiJelzEkQHidZiKxNnU
> VzaI7MW1iDi0KSAbbkEs2Hk&e=
> 
> 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: Abner Chang <abner.chang@hpe.com>
> Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
> Cc: Gilbert Chen <gilbert.chen@hpe.com>
> Signed-off-by: Dandan Bi <dandan.bi@intel.com>
> ---
>  Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc      | 2 ++
>  .../SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.dsc | 2 ++
>  2 files changed, 4 insertions(+)
> 
> diff --git a/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
> b/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
> index 2d652d215f..8e66d82863 100644
> --- a/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
> +++ b/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
> @@ -59,10 +59,12 @@ [SkuIds]
>  #
>  # Library Class section - list of all Library Classes needed by this Platform.
>  #
> 
> ##########################################################
> ######################
>  [LibraryClasses]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>    PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
>    PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
>    BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
>    BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
>    SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
> diff --git
> a/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.d
> sc
> b/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.
> dsc
> index 9f60475189..bce0c21501 100644
> ---
> a/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.d
> sc
> +++
> b/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.
> dsc
> @@ -59,10 +59,12 @@ [SkuIds]
>  #
>  # Library Class section - list of all Library Classes needed by this Platform.
>  #
> 
> ##########################################################
> ######################
>  [LibraryClasses]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>    PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
>    PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
>    BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
>    BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
>    SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
> --
> 2.18.0.windows.1


^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [edk2-platforms] [patch V2 21/35] Platform/SiFive: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 21/35] Platform/SiFive: " Dandan Bi
@ 2021-03-23  2:19   ` Abner Chang
  0 siblings, 0 replies; 34+ messages in thread
From: Abner Chang @ 2021-03-23  2:19 UTC (permalink / raw)
  To: Dandan Bi, devel@edk2.groups.io; +Cc: Schaefer, Daniel, Chen, Gilbert

Reviewed-by: Abner Chang <abner.chang@hpe.com>

> -----Original Message-----
> From: Dandan Bi [mailto:dandan.bi@intel.com]
> Sent: Monday, March 22, 2021 4:54 PM
> To: devel@edk2.groups.io
> Cc: Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>;
> Schaefer, Daniel <daniel.schaefer@hpe.com>; Chen, Gilbert
> <gilbert.chen@hpe.com>
> Subject: [edk2-platforms] [patch V2 21/35] Platform/SiFive: Consume
> MdeLibs.dsc.inc for RegisterFilterLib
> 
> REF: INVALID URI REMOVED
> 3A__bugzilla.tianocore.org_show-5Fbug.cgi-3Fid-
> 3D3246&d=DwIBAg&c=C5b8zRQO1miGmBeVZ2LFWg&r=_SN6FZBN4Vgi4Ulks
> kz6qU3NYRO03nHp9P7Z5q59A3E&m=Ckn3Q7nMlB277lSNjWNdEAXuER3dZ21
> 62mOItUrNUUA&s=0e3JOIp6BeJ6JujuEkNBRDOUy6OJCLG2N5X-
> jm8LB0Q&e=
> 
> 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: Abner Chang <abner.chang@hpe.com>
> Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
> Cc: Gilbert Chen <gilbert.chen@hpe.com>
> Signed-off-by: Dandan Bi <dandan.bi@intel.com>
> ---
>  Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc      | 2 ++
>  .../SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.dsc | 2 ++
>  2 files changed, 4 insertions(+)
> 
> diff --git a/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
> b/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
> index 2d652d215f..8e66d82863 100644
> --- a/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
> +++ b/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc
> @@ -59,10 +59,12 @@ [SkuIds]
>  #
>  # Library Class section - list of all Library Classes needed by this Platform.
>  #
> 
> ##########################################################
> ######################
>  [LibraryClasses]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>    PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
>    PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
>    BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
>    BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
>    SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
> diff --git
> a/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.d
> sc
> b/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.
> dsc
> index 9f60475189..bce0c21501 100644
> ---
> a/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.d
> sc
> +++
> b/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.
> dsc
> @@ -59,10 +59,12 @@ [SkuIds]
>  #
>  # Library Class section - list of all Library Classes needed by this Platform.
>  #
> 
> ##########################################################
> ######################
>  [LibraryClasses]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>    PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
>    PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
>    BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
>    BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
>    SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
> --
> 2.18.0.windows.1


^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [edk2-platforms] [patch V2 20/35] Platform/RISC-V: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 20/35] Platform/RISC-V: " Dandan Bi
@ 2021-03-23  2:19   ` Abner Chang
  0 siblings, 0 replies; 34+ messages in thread
From: Abner Chang @ 2021-03-23  2:19 UTC (permalink / raw)
  To: Dandan Bi, devel@edk2.groups.io; +Cc: Schaefer, Daniel, Chen, Gilbert


Reviewed-by: Abner Chang <abner.chang@hpe.com>

> -----Original Message-----
> From: Dandan Bi [mailto:dandan.bi@intel.com]
> Sent: Monday, March 22, 2021 4:54 PM
> To: devel@edk2.groups.io
> Cc: Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>;
> Schaefer, Daniel <daniel.schaefer@hpe.com>; Chen, Gilbert
> <gilbert.chen@hpe.com>
> Subject: [edk2-platforms] [patch V2 20/35] Platform/RISC-V: Consume
> MdeLibs.dsc.inc for RegisterFilterLib
> 
> REF: INVALID URI REMOVED
> 3A__bugzilla.tianocore.org_show-5Fbug.cgi-3Fid-
> 3D3246&d=DwIBAg&c=C5b8zRQO1miGmBeVZ2LFWg&r=_SN6FZBN4Vgi4Ulks
> kz6qU3NYRO03nHp9P7Z5q59A3E&m=_CnRrE7TpYzPiad26wuviZ7-
> hraZ7axFdleD3UbsfWQ&s=tka2ER6th6Vl2aRgxQ0dZF9dvu-
> lO1e8sfj3gtcd4pI&e=
> 
> 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: Abner Chang <abner.chang@hpe.com>
> Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
> Cc: Gilbert Chen <gilbert.chen@hpe.com>
> Signed-off-by: Dandan Bi <dandan.bi@intel.com>
> ---
>  Platform/RISC-V/PlatformPkg/RiscVPlatformPkg.dsc | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/Platform/RISC-V/PlatformPkg/RiscVPlatformPkg.dsc
> b/Platform/RISC-V/PlatformPkg/RiscVPlatformPkg.dsc
> index 092717d2ef..78a737317f 100644
> --- a/Platform/RISC-V/PlatformPkg/RiscVPlatformPkg.dsc
> +++ b/Platform/RISC-V/PlatformPkg/RiscVPlatformPkg.dsc
> @@ -35,10 +35,12 @@ [BuildOptions]
> 
> ##########################################################
> ######################
>  [SkuIds]
>    0|DEFAULT
> 
>  [LibraryClasses.common]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>    RiscVOpensbiPlatformLib|Platform/RISC-
> V/PlatformPkg/Library/OpensbiPlatformLibNull/OpensbiPlatformLibNull.inf
>    RiscVCpuLib|Silicon/RISC-
> V/ProcessorPkg/Library/RiscVCpuLib/RiscVCpuLib.inf
>    RiscVEdk2SbiLib|Silicon/RISC-
> V/ProcessorPkg/Library/RiscVEdk2SbiLib/RiscVEdk2SbiLib.inf
>    RiscVOpensbiLib|Silicon/RISC-
> V/ProcessorPkg/Library/RiscVOpensbiLib/RiscVOpensbiLib.inf
>    BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
> --
> 2.18.0.windows.1


^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: " Dandan Bi
@ 2021-03-23  2:19   ` Abner Chang
  0 siblings, 0 replies; 34+ messages in thread
From: Abner Chang @ 2021-03-23  2:19 UTC (permalink / raw)
  To: Dandan Bi, devel@edk2.groups.io; +Cc: Schaefer, Daniel, Chen, Gilbert

Reviewed-by: Abner Chang <abner.chang@hpe.com>

> -----Original Message-----
> From: Dandan Bi [mailto:dandan.bi@intel.com]
> Sent: Monday, March 22, 2021 4:54 PM
> To: devel@edk2.groups.io
> Cc: Chang, Abner (HPS SW/FW Technologist) <abner.chang@hpe.com>;
> Schaefer, Daniel <daniel.schaefer@hpe.com>; Chen, Gilbert
> <gilbert.chen@hpe.com>
> Subject: [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: Consume
> MdeLibs.dsc.inc for RegisterFilterLib
> 
> REF: INVALID URI REMOVED
> 3A__bugzilla.tianocore.org_show-5Fbug.cgi-3Fid-
> 3D3246&d=DwIBAg&c=C5b8zRQO1miGmBeVZ2LFWg&r=_SN6FZBN4Vgi4Ulks
> kz6qU3NYRO03nHp9P7Z5q59A3E&m=7q2x88VzmokYwvMfSopQVm8A1rYwiP
> aRl5gDwGC3aT0&s=jMqEI-vZDcI8pr6L-NNikorNG81Ona_6IPu0wc4dzr0&e=
> 
> 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: Abner Chang <abner.chang@hpe.com>
> Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
> Cc: Gilbert Chen <gilbert.chen@hpe.com>
> Signed-off-by: Dandan Bi <dandan.bi@intel.com>
> ---
>  Silicon/RISC-V/ProcessorPkg/RiscVProcessorPkg.dsc | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/Silicon/RISC-V/ProcessorPkg/RiscVProcessorPkg.dsc
> b/Silicon/RISC-V/ProcessorPkg/RiscVProcessorPkg.dsc
> index 5f88f5e89f..3bdb394cb4 100644
> --- a/Silicon/RISC-V/ProcessorPkg/RiscVProcessorPkg.dsc
> +++ b/Silicon/RISC-V/ProcessorPkg/RiscVProcessorPkg.dsc
> @@ -35,10 +35,12 @@ [BuildOptions]
> 
> ##########################################################
> ######################
>  [SkuIds]
>    0|DEFAULT
> 
>  [LibraryClasses.common]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>    CpuExceptionHandlerLib|Silicon/RISC-
> V/ProcessorPkg/Library/RiscVExceptionLib/CpuExceptionHandlerDxeLib.inf
>    RiscVCpuLib|Silicon/RISC-
> V/ProcessorPkg/Library/RiscVCpuLib/RiscVCpuLib.inf
>    RiscVEdk2SbiLib|Silicon/RISC-
> V/ProcessorPkg/Library/RiscVEdk2SbiLib/RiscVEdk2SbiLib.inf
>    RiscVOpensbiLib|Silicon/RISC-
> V/ProcessorPkg/Library/RiscVOpensbiLib/RiscVOpensbiLib.inf
>    TimerLib|Silicon/RISC-
> V/ProcessorPkg/Library/RiscVTimerLib/BaseRiscVTimerLib.inf
> --
> 2.18.0.windows.1


^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [edk2-platforms] [patch V2 28/35] Silicon/QuarkSocPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 28/35] Silicon/QuarkSocPkg: " Dandan Bi
@ 2021-03-25 17:26   ` Steele, Kelly
  0 siblings, 0 replies; 34+ messages in thread
From: Steele, Kelly @ 2021-03-25 17:26 UTC (permalink / raw)
  To: Bi, Dandan, devel@edk2.groups.io; +Cc: Kinney, Michael D


Reviewed-by: Kelly Steele <kelly.steele@intel.com>

> -----Original Message-----
> From: Bi, Dandan <dandan.bi@intel.com>
> Sent: Monday, March 22, 2021 1:54 AM
> To: devel@edk2.groups.io
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Steele, Kelly
> <kelly.steele@intel.com>
> Subject: [edk2-platforms] [patch V2 28/35] Silicon/QuarkSocPkg: Consume
> MdeLibs.dsc.inc for RegisterFilterLib
> 
> 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 <michael.d.kinney@intel.com>
> Cc: Kelly Steele <kelly.steele@intel.com>
> Signed-off-by: Dandan Bi <dandan.bi@intel.com>
> ---
>  Silicon/Intel/QuarkSocPkg/QuarkSocPkg.dsc | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/Silicon/Intel/QuarkSocPkg/QuarkSocPkg.dsc
> b/Silicon/Intel/QuarkSocPkg/QuarkSocPkg.dsc
> index e743a5e272..815ca74dbc 100644
> --- a/Silicon/Intel/QuarkSocPkg/QuarkSocPkg.dsc
> +++ b/Silicon/Intel/QuarkSocPkg/QuarkSocPkg.dsc
> @@ -2,11 +2,11 @@
>  # INTEL Quark SoC Module Package Reference Implementations
>  #
>  # This DSC file is used for Package Level build.
>  #
>  # This Module provides FRAMEWORK reference implementation for INTEL
> Quark SoC.
> -#   Copyright (c) 2013-2016 Intel Corporation.
> +#   Copyright (c) 2013-2021 Intel Corporation.
>  #
>  #   SPDX-License-Identifier: BSD-2-Clause-Patent
>  #
>  ##
> 
> @@ -38,10 +38,12 @@ [SkuIds]
>  #
>  # Library Class section - list of all Library Classes needed by this Platform.
>  #
> 
> ##########################################################
> ######################
>  [LibraryClasses]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>    #
>    # Entry point
>    #
>    PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
> 
> UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntry
> Point.inf
> --
> 2.18.0.windows.1


^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [edk2-platforms] [patch V2 15/35] Platform/QuarkPlatformPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 15/35] Platform/QuarkPlatformPkg: " Dandan Bi
@ 2021-03-25 17:27   ` Steele, Kelly
  0 siblings, 0 replies; 34+ messages in thread
From: Steele, Kelly @ 2021-03-25 17:27 UTC (permalink / raw)
  To: Bi, Dandan, devel@edk2.groups.io; +Cc: Kinney, Michael D


Reviewed-by: Kelly Steele <kelly.steele@intel.com>

> -----Original Message-----
> From: Bi, Dandan <dandan.bi@intel.com>
> Sent: Monday, March 22, 2021 1:54 AM
> To: devel@edk2.groups.io
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Steele, Kelly
> <kelly.steele@intel.com>
> Subject: [edk2-platforms] [patch V2 15/35] Platform/QuarkPlatformPkg:
> Consume MdeLibs.dsc.inc for RegisterFilterLib
> 
> 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 <michael.d.kinney@intel.com>
> Cc: Kelly Steele <kelly.steele@intel.com>
> Signed-off-by: Dandan Bi <dandan.bi@intel.com>
> ---
>  Platform/Intel/QuarkPlatformPkg/Quark.dsc    | 2 ++
>  Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc | 2 ++
>  2 files changed, 4 insertions(+)
> 
> diff --git a/Platform/Intel/QuarkPlatformPkg/Quark.dsc
> b/Platform/Intel/QuarkPlatformPkg/Quark.dsc
> index c58da58348..c2643c2ae9 100644
> --- a/Platform/Intel/QuarkPlatformPkg/Quark.dsc
> +++ b/Platform/Intel/QuarkPlatformPkg/Quark.dsc
> @@ -68,10 +68,12 @@ [SkuIds]
>  #
>  # Library Class section - list of all Library Classes needed by this Platform.
>  #
> 
> ##########################################################
> ######################
>  [LibraryClasses]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>    #
>    # Entry point
>    #
> 
> PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.in
> f
>    PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
> diff --git a/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc
> b/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc
> index 6fdfba9a58..b7931e20ce 100644
> --- a/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc
> +++ b/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc
> @@ -56,10 +56,12 @@ [SkuIds]
>  #
>  # Library Class section - list of all Library Classes needed by this Platform.
>  #
> 
> ##########################################################
> ######################
>  [LibraryClasses]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>    #
>    # Entry point
>    #
> 
> PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.in
> f
>    PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
> --
> 2.18.0.windows.1


^ permalink raw reply	[flat|nested] 34+ messages in thread

* Re: [edk2-devel] [edk2-platforms] [patch V2 26/35] Silicon/IntelSiliconPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib
  2021-03-22  8:53 ` [edk2-platforms] [patch V2 26/35] Silicon/IntelSiliconPkg: " Dandan Bi
@ 2021-03-25 23:32   ` Ni, Ray
  0 siblings, 0 replies; 34+ messages in thread
From: Ni, Ray @ 2021-03-25 23:32 UTC (permalink / raw)
  To: devel@edk2.groups.io, Bi, Dandan; +Cc: Chaganty, Rangasai V

[-- Attachment #1: Type: text/plain, Size: 2374 bytes --]

Reviewed-by: ray.ni@intel.com<mailto:ray.ni@intel.com>

thanks,
ray
________________________________
From: devel@edk2.groups.io <devel@edk2.groups.io> on behalf of Dandan Bi <dandan.bi@intel.com>
Sent: Monday, March 22, 2021 4:53:52 PM
To: devel@edk2.groups.io <devel@edk2.groups.io>
Cc: Ni, Ray <ray.ni@intel.com>; Chaganty, Rangasai V <rangasai.v.chaganty@intel.com>
Subject: [edk2-devel] [edk2-platforms] [patch V2 26/35] Silicon/IntelSiliconPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

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: Ray Ni <ray.ni@intel.com>
Cc: Rangasai V Chaganty <rangasai.v.chaganty@intel.com>
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
---
 Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc b/Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc
index 6dff68f681..62e405e1d5 100644
--- a/Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc
+++ b/Silicon/Intel/IntelSiliconPkg/IntelSiliconPkg.dsc
@@ -1,9 +1,9 @@
 ## @file
 # This package provides common open source Intel silicon modules.
 #
-# Copyright (c) 2017 - 2020, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2017 - 2021, Intel Corporation. All rights reserved.<BR>
 # Copyright (c) Microsoft Corporation.<BR>
 #
 #    SPDX-License-Identifier: BSD-2-Clause-Patent
 #
 ##
@@ -17,10 +17,12 @@ [Defines]
   SUPPORTED_ARCHITECTURES        = IA32|X64
   BUILD_TARGETS                  = DEBUG|RELEASE|NOOPT
   SKUID_IDENTIFIER               = DEFAULT

 [LibraryClasses]
+  !include MdePkg/MdeLibs.dsc.inc
+
   BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
   BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
   PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
   DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
   DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
--
2.18.0.windows.1







[-- Attachment #2: Type: text/html, Size: 4002 bytes --]

^ permalink raw reply related	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2021-03-25 23:32 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 11/35] Platform/ARM: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 12/35] Platform/BeagleBoard: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 13/35] Platform/BoardModulePkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 14/35] Platform/MinPlatformPkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 15/35] Platform/QuarkPlatformPkg: " Dandan Bi
2021-03-25 17:27   ` Steele, Kelly
2021-03-22  8:53 ` [edk2-platforms] [patch V2 16/35] Platform/Vlv2TbltDevicePkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 17/35] Platform/LeMaker: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 18/35] Platform/Qemu: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 19/35] Platform/RaspberryPi: " Dandan Bi
2021-03-22 12:56   ` Pete Batard
2021-03-22  8:53 ` [edk2-platforms] [patch V2 20/35] Platform/RISC-V: " Dandan Bi
2021-03-23  2:19   ` Abner Chang
2021-03-22  8:53 ` [edk2-platforms] [patch V2 21/35] Platform/SiFive: " Dandan Bi
2021-03-23  2:19   ` Abner Chang
2021-03-22  8:53 ` [edk2-platforms] [patch V2 22/35] Platform/Socionext: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 23/35] Platform/SoftIron: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 24/35] Silicon/Hisilicon: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 25/35] Silicon/CoffeelakeSiliconPkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 26/35] Silicon/IntelSiliconPkg: " Dandan Bi
2021-03-25 23:32   ` [edk2-devel] " Ni, Ray
2021-03-22  8:53 ` [edk2-platforms] [patch V2 27/35] Silicon/KabylakeSiliconPkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 28/35] Silicon/QuarkSocPkg: " Dandan Bi
2021-03-25 17:26   ` Steele, Kelly
2021-03-22  8:53 ` [edk2-platforms] [patch V2 29/35] Silicon/TigerlakeSiliconPkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 30/35] Silicon/Marvell: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 31/35] Silicon/NXP: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 32/35] Silicon/Openmoko: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: " Dandan Bi
2021-03-23  2:19   ` Abner Chang
2021-03-22  8:54 ` [edk2-platforms] [patch V2 34/35] Silicon/Synopsys/DesignWare: " Dandan Bi
2021-03-22  8:54 ` [edk2-platforms] [patch V2 35/35] Silicon/TexasInstruments: " Dandan Bi
  -- strict thread matches above, loose matches on Subject: below --
2021-03-22  8:20 [edk2-platforms] [patch V2 00/35] " Dandan Bi
     [not found] ` <20210322082040.14104-22-dandan.bi@intel.com>
2021-03-23  2:18   ` [edk2-platforms] [patch V2 21/35] Platform/SiFive: " Abner Chang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox