Re: [edk2-devel] [patch V2 26/29] UefiPayloadPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Guo Dong
Reviewed-by: Guo Dong > -Original Message- > From: Bi, Dandan > Sent: Monday, March 22, 2021 1:10 AM > To: devel@edk2.groups.io > Cc: Ma, Maurice ; Dong, Guo ; > You, Benjamin > Subject: [patch V2 26/29] UefiPayloadPkg: Consume MdeLibs.dsc.inc for > RegisterFilterLib > > REF: https:/

Re: [edk2-devel] [Patch V2 2/2] UefiPayloadPkg: Remove code that installs APCI

2021-03-22 Thread Guo Dong
Thanks to help make this change. Reviewed-by: Guo Dong > -Original Message- > From: Liu, Zhiguang > Sent: Monday, March 22, 2021 8:25 PM > To: devel@edk2.groups.io > Cc: Ma, Maurice ; Dong, Guo ; > You, Benjamin ; Ni, Ray > Subject: [Patch V2 2/2] UefiPayloadPkg: Remove code that ins

Re: [edk2-devel] [Patch V2 2/2] UefiPayloadPkg: Remove code that installs APCI

2021-03-22 Thread Ni, Ray
Reviewed-by: Ray Ni > -Original Message- > From: Liu, Zhiguang > Sent: Tuesday, March 23, 2021 11:25 AM > To: devel@edk2.groups.io > Cc: Ma, Maurice ; Dong, Guo ; You, > Benjamin ; Ni, > Ray > Subject: [Patch V2 2/2] UefiPayloadPkg: Remove code that installs APCI > > MdeModulePkg\Univ

Re: [edk2-devel] [Patch V2 1/2] MdeModulePkg/ACPI: Install ACPI table from HOB.

2021-03-22 Thread Ni, Ray
Reviewed-by: Ray Ni > -Original Message- > From: Liu, Zhiguang > Sent: Tuesday, March 23, 2021 11:25 AM > To: devel@edk2.groups.io > Cc: Wang, Jian J ; Wu, Hao A ; Bi, > Dandan ; Liming Gao > ; Ni, Ray > Subject: [Patch V2 1/2] MdeModulePkg/ACPI: Install ACPI table from HOB. > > If HO

Re: [edk2-devel] [patch V2 02/29] MdePkg: Add MdeLibs.dsc.inc file to MdePkg

2021-03-22 Thread Ni, Ray
Dandan, The MdeLibs.dsc.inc is almost empty with this patch. And the DSCs in consumer pkgs are not significantly simplified with this DSC header. Can you please submit a Bugzilla to capture the task that lists libs in MdeLibs.dsc.inc and simplifies all existing consumer pkgs? -=-=-=-=-=-=-=-=-

Re: [edk2-devel] [PATCH] Platform/ARM/Juno: Remove bogus PL011 _CID from DSDT ACPI table

2021-03-22 Thread Sunny Wang
Good catch, Ard. Thanks. Since this was not on EDKII emailing list (thanks to Sami for offline pointing this out to me), I resend this patch for testing my email address and fixing this typo. Best Regards, Sunny Wang -Original Message- From: devel@edk2.groups.io On Behalf Of Ard Biesh

[edk2-devel] [Patch V2 2/2] UefiPayloadPkg: Remove code that installs APCI

2021-03-22 Thread Zhiguang Liu
MdeModulePkg\Universal\Acpi\AcpiTableDxe\AcpiTableDxe.inf is capable to install ACPI table contained in HOB. All ACPI table shoulb be managed by that module. Cc: Maurice Ma Cc: Guo Dong Cc: Benjamin You Cc: Ray Ni Signed-off-by: Zhiguang Liu --- UefiPayloadPkg/BlSupportDxe/BlSupportDxe.c |

[edk2-devel] [Patch V2 0/2] Let AcpiTableDxe driver install Acpi table from Hob

2021-03-22 Thread Zhiguang Liu
If HOB contains APCI table information, entry point of AcpiTableDxe.inf should parse the APCI table from HOB, and install these tables. We assume the whole ACPI table (starting with EFI_ACPI_2_0_ROOT_SYSTEM_DESCRIPTION_POINTER) is contained by a single gEfiAcpiTableGuid HOB. This way, for UefiPayl

[edk2-devel] [Patch V2 1/2] MdeModulePkg/ACPI: Install ACPI table from HOB.

2021-03-22 Thread Zhiguang Liu
If HOB contains APCI table information, entry point of AcpiTableDxe.inf should parse the APCI table from HOB, and install these tables. We assume the whole ACPI table (starting with EFI_ACPI_2_0_ROOT_SYSTEM_DESCRIPTION_POINTER) is contained by a single gEfiAcpiTableGuid HOB. Cc: Jian J Wang Cc:

[edk2-devel] [PATCH] Platform/ARM/Juno: Remove bogus PL011 _CID from DSDT ACPI table

2021-03-22 Thread Sunny Wang
PL011 is not a valid ACPI identifier so don't expose it as a _CID. Since _CID (Compatible ID) is optional, let's just drop it. Cc: Samer El-Haj-Mahmoud Cc: Pierre Gondois Signed-off-by: Sunny Wang Reviewed-by: Sami Mujawar Reviewed-by: Ard Biesheuvel --- Platform/ARM/JunoPkg/AcpiTables/Dsdt.

[edk2-devel] [PATCH 1/2] MdeModulePkg/ACPI: Install ACPI table from HOB.

2021-03-22 Thread Zhiguang Liu
If HOB contains APCI table information, entry point of AcpiTableDxe.inf should parse the APCI table from HOB, and install these tables. We assume the whole ACPI table (starting with EFI_ACPI_2_0_ROOT_SYSTEM_DESCRIPTION_POINTER) is contained by a single gEfiAcpiTableGuid HOB. Cc: Jian J Wang Cc:

[edk2-devel] [PATCH 2/2] UefiPayloadPkg: Remove code that installs APCI

2021-03-22 Thread Zhiguang Liu
MdeModulePkg\Universal\Acpi\AcpiTableDxe\AcpiTableDxe.inf is capable to install ACPI table contained in HOB. All ACPI table shoulb be managed by that module. Cc: Maurice Ma Cc: Guo Dong Cc: Benjamin You Cc: Ray Ni Signed-off-by: Zhiguang Liu --- UefiPayloadPkg/BlSupportDxe/BlSupportDxe.c |

[edk2-devel] [PATCH 0/2] Let AcpiTableDxe driver install Acpi table from Hob

2021-03-22 Thread Zhiguang Liu
If HOB contains APCI table information, entry point of AcpiTableDxe.inf should parse the APCI table from HOB, and install these tables. We assume the whole ACPI table (starting with EFI_ACPI_2_0_ROOT_SYSTEM_DESCRIPTION_POINTER) is contained by a single gEfiAcpiTableGuid HOB. This way, for UefiPayl

Re: [edk2-devel] [patch V2 19/29] RedfishPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Nickle Wang
Reviewed-by: Nickle Wang Thanks, Nickle > -Original Message- > From: Dandan Bi > Sent: Monday, March 22, 2021 4:10 PM > To: devel@edk2.groups.io > Cc: Chang, Abner (HPS SW/FW Technologist) ; > Wang, Nickle (HPS SW) > Subject: [patch V2 19/29] RedfishPkg: Consume MdeLibs.dsc.inc for > R

Re: [edk2-devel] [patch V2 01/29] MdePkg: Add RegisterFilterLib class and NULL instance

2021-03-22 Thread Abner Chang
Reviewed-by: Abner Chang Thanks for adding description of return values. > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Dandan Bi > Sent: Monday, March 22, 2021 4:09 PM > To: devel@edk2.groups.io > Cc: Michael D Kinney ; Liming Gao > ; Zhi

Re: [edk2-devel] [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Abner Chang
Reviewed-by: Abner Chang > -Original Message- > From: Dandan Bi [mailto:dandan...@intel.com] > Sent: Monday, March 22, 2021 4:54 PM > To: devel@edk2.groups.io > Cc: Chang, Abner (HPS SW/FW Technologist) ; > Schaefer, Daniel ; Chen, Gilbert > > Subject: [edk2-platforms] [patch V2 33/35] S

Re: [edk2-devel] [edk2-platforms] [patch V2 20/35] Platform/RISC-V: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Abner Chang
Reviewed-by: Abner Chang > -Original Message- > From: Dandan Bi [mailto:dandan...@intel.com] > Sent: Monday, March 22, 2021 4:54 PM > To: devel@edk2.groups.io > Cc: Chang, Abner (HPS SW/FW Technologist) ; > Schaefer, Daniel ; Chen, Gilbert > > Subject: [edk2-platforms] [patch V2 20/35]

Re: [edk2-devel] [edk2-platforms] [patch V2 21/35] Platform/SiFive: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Abner Chang
Reviewed-by: Abner Chang > -Original Message- > From: Dandan Bi [mailto:dandan...@intel.com] > Sent: Monday, March 22, 2021 4:54 PM > To: devel@edk2.groups.io > Cc: Chang, Abner (HPS SW/FW Technologist) ; > Schaefer, Daniel ; Chen, Gilbert > > Subject: [edk2-platforms] [patch V2 21/35] P

Re: [edk2-devel] [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Abner Chang
Reviewed-by: Abner Chang > -Original Message- > From: Dandan Bi [mailto:dandan...@intel.com] > Sent: Monday, March 22, 2021 4:21 PM > To: devel@edk2.groups.io > Cc: Chang, Abner (HPS SW/FW Technologist) ; > Schaefer, Daniel ; Chen, Gilbert > > Subject: [edk2-platforms] [patch V2 33/35] S

Re: [edk2-devel] [edk2-platforms] [patch V2 21/35] Platform/SiFive: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Abner Chang
Reviewed-by: Abner Chang > -Original Message- > From: Dandan Bi [mailto:dandan...@intel.com] > Sent: Monday, March 22, 2021 4:20 PM > To: devel@edk2.groups.io > Cc: Chang, Abner (HPS SW/FW Technologist) ; > Schaefer, Daniel ; Chen, Gilbert > > Subject: [edk2-platforms] [patch V2 21/35] P

Re: [edk2-devel] [edk2-platforms] [patch V2 20/35] Platform/RISC-V: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Abner Chang
We can remove the indent (as Laszlo mentioned) to make all changes in consistent. All other changes on RISC-V are the same. Thanks Reviewed-by: Abner Chang > -Original Message- > From: Dandan Bi [mailto:dandan...@intel.com] > Sent: Monday, March 22, 2021 4:20 PM > To: devel@edk2.groups.

Re: [edk2-devel] [patch V2 19/29] RedfishPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Abner Chang
We can remove the indent (as Laszlo mentioned) to make all changes in consistent. Reviewed-by: Abner Chang > -Original Message- > From: Dandan Bi [mailto:dandan...@intel.com] > Sent: Monday, March 22, 2021 4:10 PM > To: devel@edk2.groups.io > Cc: Chang, Abner (HPS SW/FW Technologist)

Re: [edk2-devel] [patch V2 00/29] Add a new library class RegisterFilterLib in edk2 to filter/trace port IO/MMIO/MSR access

2021-03-22 Thread Dandan Bi
Hi All, Here is the branch for these changes in Edk2. https://github.com/dandanbi/edk2/tree/RegisterFilterLibV2 https://github.com/tianocore/edk2/pull/1509 Hi Mike, Liming and Zhiguang, Could you help review the first and last 2 patches in MdePkg? Since we should submit the first 2 patches first

Re: [edk2-devel] [EXTERNAL] [patch V2 27/29] UnitTestFrameworkPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
Hi Bret, Here is the branch and PR I just created for this change, please help review. Thanks. https://github.com/dandanbi/edk2/tree/RegisterFilterLibV2 https://github.com/tianocore/edk2/pull/1509 Thanks, Dandan From: Bret Barkelew Sent: Tuesday, March 23, 2021 2:25 AM To: Bi, Dandan ; devel

[edk2-devel] TianoCore Bug Triage - APAC / NAMO - Tue, 03/23/2021 6:30pm-7:30pm #cal-reminder

2021-03-22 Thread devel@edk2.groups.io Calendar
*Reminder:* TianoCore Bug Triage - APAC / NAMO *When:* Tuesday, 23 March 2021, 6:30pm to 7:30pm, (GMT-07:00) America/Los Angeles *Where:* https://meetingsamer34.webex.com/meetingsamer34/j.php?MTID=mb96c5bd411bd010e1e6d43a6f6c65f45 View Event ( https://edk2.groups.io/g/devel/viewevent?eventid=1

[edk2-devel] [PATCH] UefiCpuPkg/SmmCommunication: Remove out-dated comments

2021-03-22 Thread Ni, Ray
The comments in PiSmmCommunicationPei.c describe the whole memory layout of the SMRAM regarding the SMM communication. But SHA-1: 8b1d14939053b63d80355465649c50f9f391a64a PiSmmCommunicationSmm: Deprecate SMM Communication ACPI Table removed the code that produces the ACPI Table. This change updat

Re: [edk2-devel] [patch V2 23/29] SourceLevelDebugPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Wu, Hao A
> -Original Message- > From: Bi, Dandan > Sent: Monday, March 22, 2021 4:10 PM > To: devel@edk2.groups.io > Cc: Wu, Hao A > Subject: [patch V2 23/29] SourceLevelDebugPkg: Consume MdeLibs.dsc.inc > for RegisterFilterLib > > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246 > > Mde

Re: [edk2-devel] [patch V2 14/29] MdeModulePkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Wu, Hao A
> -Original Message- > From: Bi, Dandan > Sent: Monday, March 22, 2021 4:09 PM > To: devel@edk2.groups.io > Cc: Wang, Jian J ; Wu, Hao A > Subject: [patch V2 14/29] MdeModulePkg: Consume MdeLibs.dsc.inc for > RegisterFilterLib > > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246

Re: [edk2-devel] [edk2-discuss] Google Summer of Code Interested Student

2021-03-22 Thread Andrew Fish via groups.io
> On Mar 22, 2021, at 11:31 AM, Nate DeSimone > wrote: > > Hi Andrew, > > I tested VT_UTF8 on the macOs Terminal software and I can confirm that > VT_UTF8 renders nicely. See the attached screenshot. > Nate, Yes it is close to VT_UTF8, but not quite the same. I was looking back through t

[edk2-devel] [PATCH] Platform/ARM/Juno: Remove bogus PL011 _CID from DSDT ACPI table

2021-03-22 Thread Sunny Wang
PL011 is not a valid ACPI identifier so don't expose it as a _CID. Since _CID (Comptable ID) is optional, let's just drop it. Cc: Samer El-Haj-Mahmoud Cc: Sami Mujawar Cc: Pierre Gondois Cc: Ard Biesheuvel Signed-off-by: Sunny Wang --- Platform/ARM/JunoPkg/AcpiTables/Dsdt.asl | 1 - 1 file c

Re: [edk2-devel] SR-IOV setup in edk2

2021-03-22 Thread Laszlo Ersek
On 03/21/21 13:46, Jon Nettleton wrote: > I am looking for some example code, or direction in how SR-IOV > functions are expected to be picked up by the platform pcie host > library so it can setup required bits like LUTs. Currently the > HostLib is getting the gEfiPciIoProtocolGuid event and then

Re: [edk2-devel] [patch V2 25/29] UefiCpuPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Laszlo Ersek
On 03/22/21 09:09, 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 upd

Re: [edk2-devel] [patch V2 17/29] OvmfPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Laszlo Ersek
On 03/22/21 09:09, 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 upd

Re: [edk2-devel] [patch V2 05/29] ArmVirtPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Laszlo Ersek
On 03/22/21 09:09, 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 upd

Re: [edk2-devel] [EXTERNAL] [patch V2 27/29] UnitTestFrameworkPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Bret Barkelew via groups.io
Is there a PR somewhere that has a branch with all these changes applied? I’d like to poke around a little. Thanks! - Bret From: Dandan Bi Sent: Monday, March 22, 2021 1:10 AM To: devel@edk2.groups.io Cc: Kinney, Michael D

Re: [edk2-devel] [patch V2 02/29] MdePkg: Add MdeLibs.dsc.inc file to MdePkg

2021-03-22 Thread Laszlo Ersek
On 03/22/21 09:09, Dandan Bi wrote: > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246 > > MdeLibs.dsc.inc is added for some default libraries provided by MdePkg. > Platform can include MdeLibs.dsc.inc file to avoid some potential > incompatible changes to platform dsc file in future. > >

Re: 回复: [edk2-devel] [edk2-platforms][PATCH v2 0/5] Resolve dependency from MmUnblockMemoryLib

2021-03-22 Thread Kun Qin
Thanks a lot for the help, Liming! Regards, Kun On 03/18/2021 18:44, gaoliming wrote: Hi, all I push the patch 1, 2, 3, and 5 on 2620e05c6fade20ef5e1ba69280d09f9e2b3eff6.. aa3f6fd542e99dde4206537b095f1a2201275e75 Thanks Liming -邮件原件- 发件人: devel@edk2.groups.io 代表 Kun Qin 发送时间: 2021

Re: [edk2-devel] [patch V2 26/29] UefiPayloadPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Ma, Maurice
Reviewed-by: Maurice Ma > -Original Message- > From: Bi, Dandan > Sent: Monday, March 22, 2021 1:10 > To: devel@edk2.groups.io > Cc: Ma, Maurice ; Dong, Guo > ; You, Benjamin > Subject: [patch V2 26/29] UefiPayloadPkg: Consume MdeLibs.dsc.inc for > RegisterFilterLib > > REF: https://

Re: [edk2-devel] [edk2-platforms] [patch V2 19/35] Platform/RaspberryPi: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Pete Batard
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 platfo

[edk2-devel] [PATCH edk2-test 1/1] uefi-sct/SctPkg: IHV: type mismatch in Simple Network test

2021-03-22 Thread Heinrich Schuchardt
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3257 SctPrint() requires that %x and %d refers to an UINTN parameter. SimpleNetworkBBTestFunction.c tries to print INT32 using %x, %d without converting to UINTN resulting in corrupted output like: SimpleNetworkBBTestFunction.c:891: Status - Un

Re: [edk2-devel] [PATCH] Platform/ARM/Juno: Remove bogus PL011 _CID from DSDT ACPI table

2021-03-22 Thread Sami Mujawar
Hi Sunny, Thank you for this patch. I will merge this change shortly with the typo fixed. Reviewed-by: Sami Mujawar Regards, Sami Mujawar On 22/03/2021, 08:07, "Ard Biesheuvel" wrote: On Mon, 22 Mar 2021 at 07:13, Sunny Wang wrote: > > PL011 is not a valid ACPI identifier so

[edk2-devel] [edk2-platforms] [patch V2 34/35] Silicon/Synopsys/DesignWare: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 32/35] Silicon/Openmoko: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 28/35] Silicon/QuarkSocPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 30/35] Silicon/Marvell: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 35/35] Silicon/TexasInstruments: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 29/35] Silicon/TigerlakeSiliconPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 31/35] Silicon/NXP: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 24/35] Silicon/Hisilicon: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 25/35] Silicon/CoffeelakeSiliconPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 27/35] Silicon/KabylakeSiliconPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 26/35] Silicon/IntelSiliconPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 23/35] Platform/SoftIron: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 22/35] Platform/Socionext: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 21/35] Platform/SiFive: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 19/35] Platform/RaspberryPi: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 20/35] Platform/RISC-V: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 18/35] Platform/Qemu: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 17/35] Platform/LeMaker: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 16/35] Platform/Vlv2TbltDevicePkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 15/35] Platform/QuarkPlatformPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 14/35] Platform/MinPlatformPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 13/35] Platform/BoardModulePkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 12/35] Platform/BeagleBoard: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 11/35] Platform/ARM: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

Re: [edk2-devel] [patch V2 06/29] CryptoPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Yao, Jiewen
Reviewed-by: Jiewen Yao > -Original Message- > From: Bi, Dandan > Sent: Monday, March 22, 2021 4:09 PM > To: devel@edk2.groups.io > Cc: Yao, Jiewen ; Wang, Jian J ; > Lu, XiaoyuX ; Jiang, Guomin > Subject: [patch V2 06/29] CryptoPkg: Consume MdeLibs.dsc.inc for > RegisterFilterLib > >

[edk2-devel] [edk2-platforms] [patch V2 09/35] Features/UserInterface: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 08/35] Features/SystemInformation: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 07/35] Features/PowerManagement: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 06/35] Features/OutOfBandManagement: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 04/35] Features/Debugging: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 05/35] Features/Network: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 03/35] Drivers/OptionRomPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 01/35] Drivers/ASIX: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 02/35] Drivers/DisplayLink: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [edk2-platforms] [patch V2 00/35] Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246 RFC: https://edk2.groups.io/g/devel/message/72530 edk2 change: https://edk2.groups.io/g/devel/message/73071 MdeLibs.dsc.inc was added for some basic/default library instances provided by MdePkg and RegisterFilterLibNull Library was also adde

[edk2-devel] [patch V2 28/29] MdePkg/IoLib: Filter/trace port IO/MMIO access

2021-03-22 Thread Dandan Bi
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246 Cc: Michael D Kinney Cc: Liming Gao Cc: Zhiguang Liu Signed-off-by: Dandan Bi --- .../BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf | 3 +- .../BaseIoLibIntrinsicArmVirt.inf | 3 +- .../BaseIoLibIntrinsicInternal.h

[edk2-devel] [patch V2 27/29] UnitTestFrameworkPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 29/29] MdePkg/Baseib: Filter/trace MSR access for IA32/X64

2021-03-22 Thread Dandan Bi
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246 Cc: Michael D Kinney Cc: Liming Gao Cc: Zhiguang Liu Signed-off-by: Dandan Bi --- MdePkg/Library/BaseLib/BaseLib.inf | 5 ++- MdePkg/Library/BaseLib/Ia32/GccInlinePriv.c | 38 +++--- MdePkg/Library/BaseLib/Ia32/Rea

[edk2-devel] [patch V2 23/29] SourceLevelDebugPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 26/29] UefiPayloadPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 22/29] SignedCapsulePkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 25/29] UefiCpuPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 20/29] SecurityPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 24/29] StandaloneMmPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 17/29] OvmfPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 18/29] PcAtChipsetPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 21/29] ShellPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 19/29] RedfishPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 14/29] MdeModulePkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 16/29] NetworkPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 12/29] IntelFsp2Pkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 15/29] MdePkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 09/29] EmulatorPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 13/29] IntelFsp2WrapperPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 08/29] EmbeddedPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 11/29] FmpDevicePkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

[edk2-devel] [patch V2 10/29] FatPkg: Consume MdeLibs.dsc.inc for RegisterFilterLib

2021-03-22 Thread Dandan Bi
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 Re

  1   2   >