Re: [edk2-devel] [PATCH v2 5/6] UefiPayloadPkg: Specifies SmmCpuSyncLib instance

2023-12-05 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Wu, Jiaxin Sent: Thursday, November 30, 2023 2:32 PM To: devel@edk2.groups.io Cc: Laszlo Ersek ; Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua ; Ni, Ray ; Zeng, Star Subject: [PATCH v2 5/6] UefiPayloadPkg: Specifies SmmCpuSyncLib

Re: [edk2-devel] [PATCH 2/2] UefiPayloadPkg/UefiPayloadEntry: Add 5 level paging support

2023-12-06 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Liu, Zhiguang Sent: Thursday, December 7, 2023 10:40 AM To: devel@edk2.groups.io Cc: Liu, Zhiguang ; Gao, Liming ; Wu, Jiaxin ; Ni, Ray ; Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua Subject: [PATCH 2/2] UefiPayloadPkg

Re: [edk2-devel] [PATCH 1/2] MdeModulePkg/DxeIpl: Add 5 level paging support

2023-12-14 Thread Guo, Gua
Reviewed-by: Gua Guo From: Liu, Zhiguang Sent: Thursday, December 14, 2023 3:59:38 PM To: devel@edk2.groups.io Cc: Gao, Liming ; Wu, Jiaxin ; Ni, Ray ; Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua Subject: RE: [PATCH 1/2] MdeModulePkg/DxeIpl: Add 5 level

Re: [edk2-devel] [PATCH] BaseTools: FMMT GuidTool Auto Select Config file Enabling

2023-12-18 Thread Guo, Gua
Hi @Gao, Liming and @Rebecca Cran I may need to get your help for review it, any concern you can also share for us. Thanks, Gua -Original Message- From: devel@edk2.groups.io On Behalf Of Yuwei Chen Sent: Friday, December 15, 2023 5:12 PM To: devel@edk2.groups.io Cc: Rebecca Cran ; Gao,

Re: [edk2-devel] [PATCH] UefiPayloadPkg: Add macro to enable selection of timer

2024-01-05 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Ma, Hua Sent: Friday, January 5, 2024 2:19 PM To: devel@edk2.groups.io; Guo, Gua ; Dong, Guo ; Lu, James ; Rhodes, Sean Subject: Re: [edk2-devel] [PATCH] UefiPayloadPkg: Add macro to enable selection of timer Add maintainers to help

Re: [edk2-devel] [PATCH 1/1] UefiPayloadPkg/UefiPayloadEntry: Remove SCI enabling check

2024-01-07 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Chen, Gang C Sent: Monday, January 8, 2024 3:26 PM To: devel@edk2.groups.io Cc: Guo, Gua ; Dong, Guo ; Lu, James ; Rhodes, Sean ; Chen, Gang C Subject: [PATCH 1/1] UefiPayloadPkg/UefiPayloadEntry: Remove SCI enabling check It'

[edk2-devel] [PATCH v1 0/4] Bz4166: Integer Overflow in CreateHob()

2024-01-10 Thread Guo, Gua
From: Gua Guo Fix Integer Overflow for CVE-2022-36765 1. UefiPayloadPkg/Hob: Integer Overflow in CreateHob() 2. StandaloneMmPkg/Hob: Integer Overflow in CreateHob() 3. EmbeddedPkg/Hob: Integer Overflow in CreateHob() 4. MdeModulePkg/Hob: Integer Overflow in CreateHob() Gerd Hoffmann (4): Uefi

[edk2-devel] [PATCH v1 1/4] UefiPayloadPkg/Hob: Integer Overflow in CreateHob()

2024-01-10 Thread Guo, Gua
From: Gerd Hoffmann REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)

[edk2-devel] [PATCH v1 2/4] StandaloneMmPkg/Hob: Integer Overflow in CreateHob()

2024-01-10 Thread Guo, Gua
From: Gerd Hoffmann REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)

[edk2-devel] [PATCH v1 3/4] EmbeddedPkg/Hob: Integer Overflow in CreateHob()

2024-01-10 Thread Guo, Gua
From: Gerd Hoffmann REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)

[edk2-devel] [PATCH v1 4/4] MdeModulePkg/Hob: Integer Overflow in CreateHob()

2024-01-10 Thread Guo, Gua
From: Gerd Hoffmann REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)

Re: [edk2-devel] [PATCH v1 0/4] Bz4166: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
also let me know, before merging it. It's PR https://github.com/tianocore/edk2/pull/5252/ Thanks, Gua -Original Message- From: devel@edk2.groups.io On Behalf Of Guo, Gua Sent: Thursday, January 11, 2024 1:15 PM To: devel@edk2.groups.io Cc: Guo, Gua Subject: [edk2-devel] [PATCH v1 0

[edk2-devel] [PATCH v2 2/4] StandaloneMmPkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
From: Gua Guo REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)); ```

[edk2-devel] [PATCH v2 0/4] Bz4166: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
From: Gua Guo V2 1. UefiPayloadPkg/Hob: Integer : Add Reviewed-by and Authored-by 2. StandaloneMmPkg/Hob: Integer Overflow in : Add Reviewed-by and Authored-by 3. EmbeddedPkg/Hob: Integer Overflow in CreateHob() : Add Reviewed-by and Authored-by 4. MdeModulePkg/Hob: Integer Overflow in Create

[edk2-devel] [PATCH v2 3/4] EmbeddedPkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
From: Gua Guo REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)); ```

[edk2-devel] [PATCH v2 1/4] UefiPayloadPkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
From: Gua Guo REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)); ```

[edk2-devel] [PATCH v2 4/4] MdeModulePkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
From: Gua Guo REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)); ```

Re: [edk2-devel] [PATCH v2 4/4] MdeModulePkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
Hi @Gao, Liming I may need to get your help to check this change when you're available. If it's fine for you from MdeModulePkg. I think we can merge this PR. https://github.com/tianocore/edk2/pull/5252 Thanks, Gua -Original Message----- From: Guo, Gua Sent: Thursday, January

Re: [edk2-devel] [PATCH v2 2/4] StandaloneMmPkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
You mean we need to add below error handle after all callers ? Hob = CreateHob (...) ASSERT (Hob != NULL); < Here Thanks, Gua -Original Message- From: Sami Mujawar Sent: Thursday, January 11, 2024 10:06 PM To: Guo, Gua ; devel@edk2.groups.io Cc: Marc Beatove ;

Re: [edk2-devel] [PATCH v2 2/4] StandaloneMmPkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
> CreateHob > return NULL All caller chain may need to add it if we really want to prevent it on release. Thanks, Gua -Original Message- From: Sami Mujawar Sent: Thursday, January 11, 2024 11:02 PM To: Guo, Gua ; devel@edk2.groups.io Cc: Marc Beatove ; Ard Biesheuvel ; Ni, Ra

[edk2-devel] [PATCH v3 0/4] Bz4166: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
From: Gua Guo PR: https://github.com/tianocore/edk2/pull/5252 V3 1. UefiPayloadPkg/Hob: Integer : Add error handle 2. StandaloneMmPkg/Hob: Integer Overflow in : Add error handle 3. EmbeddedPkg/Hob: Integer Overflow in CreateHob() : Add error handle V2 1. UefiPayloadPkg/Hob: Integer : Add Revi

[edk2-devel] [PATCH v3 1/4] UefiPayloadPkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
From: Gua Guo REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)); ```

[edk2-devel] [PATCH v3 2/4] StandaloneMmPkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
From: Gua Guo REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)); ```

[edk2-devel] [PATCH v3 3/4] EmbeddedPkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
From: Gua Guo REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)); ```

[edk2-devel] [PATCH v3 4/4] MdeModulePkg/Hob: Integer Overflow in CreateHob()

2024-01-11 Thread Guo, Gua
From: Gua Guo REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4166 Fix integer overflow in various CreateHob instances. Fixes: CVE-2022-36765 The CreateHob() function aligns the requested size to 8 performing the following operation: ``` HobLength = (UINT16)((HobLength + 0x7) & (~0x7)); ```

Re: [edk2-devel] [PATCH] UefiPayloadPkg: CbParseLib: Fix integer overflow

2024-01-12 Thread Guo, Gua
Reviewed-by: Gua Guo From: Lean Sheng Tan Sent: Friday, January 12, 2024 7:33:00 PM To: Rudolph, Patrick Cc: devel@edk2.groups.io ; Rhodes, Sean ; Guo, Gua ; Lu, James ; Ni, Ray ; Dong, Guo Subject: Re: [PATCH] UefiPayloadPkg: CbParseLib: Fix integer overflow

Re: [edk2-devel] [PATCH v3 0/4] Bz4166: Integer Overflow in CreateHob()

2024-01-23 Thread Guo, Gua
ently. -Original Message- From: Gerd Hoffmann Sent: Tuesday, January 23, 2024 10:50 PM To: Guo, Gua Cc: devel@edk2.groups.io; Ard Biesheuvel ; Mathews, John ; Zimmer, Vincent ; Sami Mujawar ; jma...@redhat.com Subject: Re: [PATCH v3 0/4] Bz4166: Integer Overflow in CreateHob() On Fri, J

Re: [edk2-devel] [PATCH v2 1/1] MdePkg: Add FdtLib gmock support

2024-01-23 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: devel@edk2.groups.io On Behalf Of Michael D Kinney Sent: Wednesday, January 24, 2024 7:19 AM To: Jeff Brasen ; devel@edk2.groups.io Cc: gaolim...@byosoft.com.cn; Liu, Zhiguang ; Kinney, Michael D Subject: Re: [edk2-devel] [PATCH v2 1/1] Mde

[edk2-devel] [PATCH v1] UefiPayloadPkg/Crypto: Make crypto driver as optional

2024-01-24 Thread Guo, Gua
From: Gua Guo Crypto in serveral case will use old version, treat as optional will make customer easy to upgrade it. Cc: Guo Dong Cc: Sean Rhodes Cc: James Lu Cc: Gua Guo Signed-off-by: Gua Guo --- UefiPayloadPkg/UefiPayloadPkg.dsc | 3 +++ UefiPayloadPkg/UefiPayloadPkg.fdf | 2 ++ 2 files

[edk2-devel] [PATCH v2] UefiPayloadPkg/Crypto: Support external Crypto drivers.

2024-01-24 Thread Guo, Gua
From: Gua Guo Crypto in serveral case will use old version or latest version, Platform may choose to only update Crypto drivers without updating whole UPL, in this case the Crypto driver will provide by platform payload outside the common UPL binary. Cc: Chasel Chiu Cc: Guo Dong Cc: Sean Rhode

Re: [edk2-devel] [PATCH v3 0/4] Bz4166: Integer Overflow in CreateHob()

2024-01-25 Thread Guo, Gua
Hi @Gerd Hoffmann It's PR https://github.com/tianocore/edk2/pull/5298 if no more concern received, will merge it tomorrow morning. Thanks, Gua -Original Message- From: Gerd Hoffmann Sent: Wednesday, January 24, 2024 8:48 PM To: Guo, Gua Cc: devel@edk2.groups.io; Ard Biesh

Re: [edk2-devel] [PATCH V2] Maintainers.txt: Stop to be reviewer of several modules

2023-10-19 Thread Guo, Gua
Reviewed-by: Gua Guo From: Kinney, Michael D Sent: Friday, October 20, 2023 8:56:26 AM To: devel@edk2.groups.io ; Ni, Ray Cc: Gao, Zhichao ; Wu, Hao A ; Liu, Zhiguang ; Guo, Gua ; Kinney, Michael D Subject: RE: [edk2-devel] [PATCH V2] Maintainers.txt: Stop to

Re: [edk2-devel] [PATCH v4 05/14] UefiPayloadPkg: Add ImagePropertiesRecordLib Instance

2023-10-23 Thread Guo, Gua
Reviewed-by: Gua Guo From: Kinney, Michael D Sent: Tuesday, October 24, 2023 8:09:16 AM To: devel@edk2.groups.io ; t...@taylorbeebe.com Cc: Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua ; Kinney, Michael D Subject: RE: [edk2-devel] [PATCH v4 05/14

Re: [edk2-devel] [PATCH v2 1/1] UefiPayloadPkg: Fix incorrect code on Fit function.

2023-10-27 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Wang, BruceX Sent: Saturday, October 28, 2023 7:13 AM To: devel@edk2.groups.io Cc: Wang, BruceX ; Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua Subject: [PATCH v2 1/1] UefiPayloadPkg: Fix incorrect code on Fit function. From: BruceX

Re: [edk2-devel] [PATCH v1 6/7] UefiPayloadPkg: Specifies SmmCpuSyncLib instance

2023-11-05 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Wu, Jiaxin Sent: Friday, November 3, 2023 11:30 PM To: devel@edk2.groups.io Cc: Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua ; Ni, Ray ; Zeng, Star Subject: [PATCH v1 6/7] UefiPayloadPkg: Specifies SmmCpuSyncLib instance The

Re: [edk2-devel] [PATCH] IntelFsp2WrapperPkg: Add variable initialization

2023-11-09 Thread Guo, Gua
, James ; Guo, Gua Subject: [PATCH] IntelFsp2WrapperPkg: Add variable initialization From: "JasonX.Hsu" REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4595 Fix build error when remove "-Wno-sometimes-uninitialized" option, Add variable "FspMultiPhaseApiOffset&q

Re: [edk2-devel] [PATCH v1 1/1] MdeModulePkg/TraceHubDebugSysTLib: Use wider type for loop comparisons

2024-02-20 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: mikub...@linux.microsoft.com Sent: Tuesday, February 20, 2024 11:26 PM To: devel@edk2.groups.io Cc: Liming Gao ; Guo, Gua ; Prakashan, Krishnadas Veliyathuparambil ; K N, Karthik Subject: [PATCH v1 1/1] MdeModulePkg/TraceHubDebugSysTLib

Re: [edk2-devel] [PATCH v1 0/1] UefiPayloadPkg: Make Dsc accomodative of other archs

2024-02-25 Thread Guo, Gua
Series Reviewed-by: Gua Guo From: Dhaval Sent: Sunday, February 25, 2024 10:50:50 PM To: devel@edk2.groups.io Cc: Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua Subject: [PATCH v1 0/1] UefiPayloadPkg: Make Dsc accomodative of other archs Current DSC files

[edk2-devel] [PATCH v1] UefiPayloadPkg: UPL arch backward support ELF

2024-03-03 Thread Guo, Gua
From: Gua Guo After 11ad164bcea6b0ed3628d merge, ELF format API won't meet backward requirement. Cc: Guo Dong Cc: Sean Rhodes Reviewed-by: James Lu Cc: Gua Guo Signed-off-by: Gua Guo --- UefiPayloadPkg/UniversalPayloadBuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --g

Re: [edk2-devel] [PATCH v1 1/1] UefiPayloadPkg: Cleanup ProcessLibraryConstructorList()

2024-03-15 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Wang, BruceX Sent: Friday, March 15, 2024 5:21 PM To: devel@edk2.groups.io Cc: Wang, BruceX ; Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua Subject: [PATCH v1 1/1] UefiPayloadPkg: Cleanup ProcessLibraryConstructorList() From: Bruce

Re: [edk2-devel] [PATCH v1 06/13] UefiPayloadPkg/UefiPayloadPkg.dsc: Include SmmRelocationLib

2024-04-10 Thread Guo, Gua
Reviewed-by: Gua Guo From: Wu, Jiaxin Sent: Wednesday, April 10, 2024 9:57:17 PM To: devel@edk2.groups.io Cc: Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua ; Ni, Ray Subject: [PATCH v1 06/13] UefiPayloadPkg/UefiPayloadPkg.dsc: Include SmmRelocationLib

[edk2-devel] [PATCH v1 1/1] BaseTools/GetUtcDateTime.py: Python 3.12 support

2024-04-21 Thread Guo, Gua
From: Gua Guo Ref to https://docs.python.org/3/whatsnew/3.12.html utcnow() and utcfromtimestamp() are deprecated Prevent use it cause build error. Cc: Rebecca Cran Cc: Liming Gao Cc: Bob Feng Cc: Yuwei Chen Signed-off-by: Gua Guo --- BaseTools/Scripts/GetUtcDateTime.py | 2 +- 1 file chang

[edk2-devel] [PATCH v1 0/1] BaseTools/GetUtcDateTime.py 3.12 support

2024-04-21 Thread Guo, Gua
From: Gua Guo PR: https://github.com/tianocore/edk2/pull/5576 V1: Currently, Build FSP will be failure by python3.12 by calling GetUtcDateTime.py Gua Guo (1): BaseTools/GetUtcDateTime.py: Python 3.12 support BaseTools/Scripts/GetUtcDateTime.py | 2 +- 1 file changed, 1 insertion(+), 1 delet

Re: [edk2-devel] [PATCH v1 0/1] BaseTools/GetUtcDateTime.py 3.12 support

2024-04-21 Thread Guo, Gua
Hi @Liming Gao and @Rebecca Cran May I get one of your help for code review + 1 ? Maybe we can merge it EOW, I think it's no harmful change. Thanks, Gua -Original Message- From: Guo, Gua Sent: Sunday, April 21, 2024 8:51 PM To: devel@edk2.groups.io Cc: Guo, Gua ; Kasbekar, S

[edk2-devel] [PATCH v1 0/2] IntelFsp2Pkg: Python3.12 support

2024-04-21 Thread Guo, Gua
From: Gua Guo PR: https://github.com/tianocore/edk2/pull/5577 V1: Prevent Syntax Warning after upgrade python version to 3.12 Gua Guo (2): IntelFsp2Pkg/GenCfgOpt.py: Python 3.12 support IntelFsp2Pkg/PatchFv.py: Python 3.12 support IntelFsp2Pkg/Tools/GenCfgOpt.py | 96 -

[edk2-devel] [PATCH v1 1/2] IntelFsp2Pkg/GenCfgOpt.py: Python 3.12 support

2024-04-21 Thread Guo, Gua
From: Gua Guo Ref to https://docs.python.org/3/whatsnew/3.12.html A backslash-character pair that is not a valid escape sequence now generates Cc: Chasel Chiu Cc: Nate DeSimone Cc: Duggapu Chinni B Cc: Star Zeng Cc: Ted Kuo Cc: Ashraf Ali S Cc: Susovan Mohapatra Signed-off-by: Gua Guo --

[edk2-devel] [PATCH v1 2/2] IntelFsp2Pkg/PatchFv.py: Python 3.12 support

2024-04-21 Thread Guo, Gua
From: Gua Guo Ref to https://docs.python.org/3/whatsnew/3.12.html A backslash-character pair that is not a valid escape sequence now generates Cc: Chasel Chiu Cc: Nate DeSimone Cc: Duggapu Chinni B Cc: Star Zeng Cc: Ted Kuo Cc: Ashraf Ali S Cc: Susovan Mohapatra Signed-off-by: Gua Guo --

Re: [edk2-devel] [PATCH v1 0/2] IntelFsp2Pkg: Python3.12 support

2024-04-21 Thread Guo, Gua
Hi FSP folks Need to get one of your help, to approve this PR, maybe we can merge it EOW. Thanks Gua -Original Message- From: Guo, Gua Sent: Monday, April 22, 2024 9:37 AM To: devel@edk2.groups.io Cc: Guo, Gua Subject: [PATCH v1 0/2] IntelFsp2Pkg: Python3.12 support From: Gua Guo

[edk2-devel] [PATCH v1 0/1] BaseTools/Fmmt.py: Python 3.12 support

2024-04-21 Thread Guo, Gua
From: Gua Guo PR: https://github.com/tianocore/edk2/pull/5579 V1: Ref to https://docs.python.org/3/whatsnew/3.12.html A backslash-character pair that is not a valid escape sequence now generates Gua Guo (1): BaseTools/Fmmt.py: Python 3.12 support BaseTools/Source/Python/FMMT/FMMT.py |

[edk2-devel] [PATCH v1 1/1] BaseTools/Fmmt.py: Python 3.12 support

2024-04-21 Thread Guo, Gua
From: Gua Guo Ref to https://docs.python.org/3/whatsnew/3.12.html A backslash-character pair that is not a valid escape sequence now generates Cc: Rebecca Cran Cc: Liming Gao Cc: Bob Feng Cc: Yuwei Chen Signed-off-by: Gua Guo --- BaseTools/Source/Python/FMMT/FMMT.py | 2 +- 1 file changed,

Re: [edk2-devel] [PATCH v1 0/2] IntelFsp2Pkg: Python3.12 support

2024-04-21 Thread Guo, Gua
Thank @S, Ashraf Ali help for quick code review. I've update rb message and will add push label tomorrow to make sure everyone aware this change. PR: https://github.com/tianocore/edk2/pull/5577 Thanks, Gua -Original Message- From: Guo, Gua Sent: Monday, April 22, 2024 9:41 AM To:

Re: [edk2-devel] [PATCH v1 0/1] BaseTools/Fmmt.py: Python 3.12 support

2024-04-22 Thread Guo, Gua
Hi @Chiu, Chasel and @Kinney, Michael D As you know, Intel don't have owner own basetools now, may I get your help to reach the PR to maintainer. Thanks, Gua -Original Message- From: Guo, Gua Sent: Monday, April 22, 2024 9:50 AM To: devel@edk2.groups.io Cc: Guo, Gua Subject: [

Re: [edk2-devel] [PATCH v1 0/1] BaseTools/GetUtcDateTime.py 3.12 support

2024-04-22 Thread Guo, Gua
Hi @Chiu, Chasel and @Kinney, Michael D As you know, Intel don't have owner own basetools now, may I get your help to reach the PR to maintainer. Thanks, Gua -Original Message- From: Guo, Gua Sent: Monday, April 22, 2024 9:06 AM To: devel@edk2.groups.io; Liming Gao ; Rebecca Cran

Re: [edk2-devel] [PATCH v1 1/1] BaseTools/Fmmt.py: Python 3.12 support

2024-04-23 Thread Guo, Gua
Thanks @gaoliming for the reviewed-by, I've updated the RB info into PR and add push label. https://github.com/tianocore/edk2/pull/5579 Thanks, Gua -Original Message- From: gaoliming Sent: Tuesday, April 23, 2024 10:42 PM To: devel@edk2.groups.io; Guo, Gua Cc: 'Rebecca Cr

Re: [edk2-devel] [PATCH v4 13/14] UefiPayloadPkg/UefiPayloadPkg.dsc: Include SmmRelocationLib

2024-04-26 Thread Guo, Gua
Reviewed-by: Gua Guo From: Wu, Jiaxin Sent: Friday, April 26, 2024 8:17:19 PM To: devel@edk2.groups.io Cc: Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua ; Ni, Ray Subject: [PATCH v4 13/14] UefiPayloadPkg/UefiPayloadPkg.dsc: Include SmmRelocationLib This

[edk2-devel] [PATCH v1 0/1] UefiPayloadPkg: Update swig install process

2024-05-15 Thread Guo, Gua
From: Gua Guo PR: https://github.com/tianocore/edk2/pull/5661 V1: Update swig install process into ReadMe.md Cc: Chasel Chiu Cc: Guo Dong Cc: Sean Rhodes Cc: James Lu Cc: Gua Guo Gua Guo (1): UefiPayloadPkg: Update ReadMe.md to swig install UefiPayloadPkg/Readme.md | 4 +++- 1 file

[edk2-devel] [PATCH v1 1/1] UefiPayloadPkg: Update ReadMe.md to swig install

2024-05-15 Thread Guo, Gua
From: Gua Guo Update ReadMe.md for swig install process in windows OS. Cc: Chasel Chiu Cc: Guo Dong Cc: Sean Rhodes Cc: James Lu Cc: Gua Guo Signed-off-by: Gua Guo --- UefiPayloadPkg/Readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/UefiPayloadPkg/Readme.md

Re: [edk2-devel] [PATCH v1 1/1] UefiPayloadPkg: Update ReadMe.md to swig install

2024-05-15 Thread Guo, Gua
Update RB info into PR, wait Edk2 202405 Hard Freeze unlock, will merge it. -Original Message- From: Dong, Guo Sent: Thursday, May 16, 2024 12:03 AM To: Guo, Gua ; devel@edk2.groups.io Cc: Chiu, Chasel ; Rhodes, Sean ; Lu, James Subject: RE: [PATCH v1 1/1] UefiPayloadPkg: Update

Re: [edk2-devel] [PATCH] UefiPayloadPkg: Fix LoadDxeCore for payload size > 16MB

2024-06-05 Thread Guo, Gua
Please send PR also. From: Lean Sheng Tan Sent: Wednesday, June 5, 2024 10:18:27 PM To: devel@edk2.groups.io ; Witt, Sebastian ; Guo, Gua ; Rhodes, Sean ; Lu, James ; Dong, Guo Subject: Re: [edk2-devel] [PATCH] UefiPayloadPkg: Fix LoadDxeCore for payload size

Re: [edk2-devel] [PATCH] UefiPayloadPkg: Fix LoadDxeCore for payload size > 16MB

2024-06-10 Thread Guo, Gua
I’ve added push label, it will be merged tomorrow. From: Lean Sheng Tan Sent: Monday, June 10, 2024 11:28 PM To: Witt, Sebastian Cc: Guo, Gua ; devel@edk2.groups.io; Rhodes, Sean ; Lu, James ; Dong, Guo Subject: Re: [edk2-devel] [PATCH] UefiPayloadPkg: Fix LoadDxeCore for payload size

Re: [edk2-devel] [PATCH v1 1/1] UefiPayloadPkg: Enable UPL FIT build config from cmdline

2024-06-10 Thread Guo, Gua
-Original Message- From: Dhaval Sent: Monday, June 10, 2024 11:45 PM To: devel@edk2.groups.io Cc: Guo, Gua ; Dong, Guo ; Lu, James ; Rhodes, Sean Subject: [PATCH v1 1/1] UefiPayloadPkg: Enable UPL FIT build config from cmdline Provide commandline configuration to select proper platform fil

Re: [edk2-devel] [PATCH v2 16/17] UefiPayloadPkg: Remove duplicated words

2022-09-12 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: devel@edk2.groups.io On Behalf Of PierreGondois Sent: Tuesday, September 6, 2022 4:29 PM To: devel@edk2.groups.io Cc: Pierre Gondois ; Dong, Guo ; Ni, Ray ; Rhodes, Sean Subject: [edk2-devel] [PATCH v2 16/17] UefiPayloadPkg: Remove duplicat

[edk2-devel] [PATCH] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-13 Thread Guo, Gua
From: Gua Guo In order to collect code coverage after running executable file, generate *.gcda and *.gcno file that require by lcov tool to generate code coverage report. Cc: Michael D Kinney Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael Kubacki Signed-off-by: Gua Guo --- UnitTestFramework

Re: [edk2-devel] [PATCH] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-13 Thread Guo, Gua
enhtml UnitTest.info --branch-coverage -o .Build/UnitTestReport Step5. Open "Build/UnitTestReport/index.html" Thanks, Gua -----Original Message- From: Guo, Gua Sent: Tuesday, September 13, 2022 9:24 PM To: devel@edk2.groups.io Cc: Guo, Gua ; Kinney, Michael D ; Sean Brogan ; Ba

Re: [edk2-devel] [PATCH] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-13 Thread Guo, Gua
Sure, thanks for replying quickly, let me update readme.md file in my next patch. -Original Message- From: Kinney, Michael D Sent: Tuesday, September 13, 2022 11:10 PM To: Guo, Gua ; devel@edk2.groups.io; Kinney, Michael D Cc: Sean Brogan ; Barkelew, Bret ; Michael Kubacki Subject

[edk2-devel] [PATCH v2] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-13 Thread Guo, Gua
From: Gua Guo In order to collect code coverage after running executable file, generate *.gcda and *.gcno file that require by lcov tool to generate code coverage report. Cc: Michael D Kinney Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael Kubacki Signed-off-by: Gua Guo --- UnitTestFramework

Re: [edk2-devel] [PATCH v2] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-13 Thread Guo, Gua
ool? No, currently I don’t find a good way to generate code coverage for MSVC compiler Thanks, Gua From: Kinney, Michael D Sent: Wednesday, September 14, 2022 9:52 AM To: Sean Brogan ; devel@edk2.groups.io; Guo, Gua ; Kinney, Michael D Cc: Sean Brogan ; Michael Kubacki Subject: RE: [edk2-devel]

Re: [edk2-devel] [PATCH v2] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-14 Thread Guo, Gua
t may give me some time to think how to modify. edk2\.azurepipelines\Windows-VS2019.yml It may give me some time to think how to modify. edk2\.azurepipelines\Ubuntu-GCC5.yml Thanks, Gua From: Kinney, Michael D Sent: Thursday, September 15, 2022 12:35 AM To: Guo, Gua ; Sean Brogan ; devel@edk2.gro

[edk2-devel] [PATCH v3 0/2] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-22 Thread Guo, Gua
From: Gua Guo V1: Add coverage option for GCC V2: Add ReadMe.md for how to generate coverage report V3: Add VS2019 and GCC code coverage support Gua Guo (2): UnitTestFrameworkPkg: Add code coverage support for GCC BaseTools/Plugin: Add coverage support for Unit Test .../HostBasedUnitTestRu

[edk2-devel] [PATCH v3 1/2] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-22 Thread Guo, Gua
From: Gua Guo In order to collect code coverage after running executable file, generate *.gcda and *.gcno file that require by lcov tool to generate code coverage report. Cc: Michael D Kinney Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael Kubacki Signed-off-by: Gua Guo --- UnitTestFramework

[edk2-devel] [PATCH v3 2/2] BaseTools/Plugin: Add coverage support for Unit Test

2022-09-22 Thread Guo, Gua
From: Gua Guo For GCC, use lcov to generate Unit Test code coverage report For VS2019, use OpenCppCoverage to generate code coverage report Cc: Bob Feng Cc: Liming Gao Cc: Bret Barkelew Cc: Michael D Kinney Cc: Sean Brogan Signed-off-by: Gua Guo --- .../HostBasedUnitTestRunner.py

Re: [edk2-devel] [PATCH v3 0/2] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-22 Thread Guo, Gua
It's PR based on the patch. Have any concern, please also share for me. https://github.com/tianocore/edk2/pull/3349 Thanks, Gua -Original Message- From: devel@edk2.groups.io On Behalf Of Guo, Gua Sent: Thursday, September 22, 2022 3:09 PM To: devel@edk2.groups.io Cc: Guo, Gua Su

Re: [edk2-devel] [PATCH v3 0/2] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-22 Thread Guo, Gua
dePkg CODE_COVERAGE=TRUE CC_HTML=TRUE Thanks, Gua -Original Message- From: Kinney, Michael D Sent: Friday, September 23, 2022 12:15 AM To: Guo, Gua ; devel@edk2.groups.io Cc: Sean Brogan Subject: RE: [edk2-devel] [PATCH v3 0/2] UnitTestFrameworkPkg: Add code coverage support for GCC

[edk2-devel] [PATCH v4 0/3] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-26 Thread Guo, Gua
From: Gua Guo V1: Add coverage option for GCC V2: Add ReadMe.md for how to generate coverage report V3: Add VS2019 and GCC code coverage support V4: Add VS2019/GCC CI/CD support Gua Guo (3): UnitTestFrameworkPkg: Add code coverage support for GCC BaseTools/Plugin: Add coverage support for Un

[edk2-devel] [PATCH v4 1/3] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-26 Thread Guo, Gua
From: Gua Guo In order to collect code coverage after running executable file, generate *.gcda and *.gcno file that require by lcov tool to generate code coverage report. Cc: Michael D Kinney Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael Kubacki Signed-off-by: Gua Guo --- UnitTestFramework

[edk2-devel] [PATCH v4 2/3] BaseTools/Plugin: Add coverage support for Unit Test

2022-09-26 Thread Guo, Gua
From: Gua Guo For GCC, use lcov to generate Unit Test code coverage report For VS2019, use OpenCppCoverage to generate code coverage report Cc: Bob Feng Cc: Liming Gao Cc: Bret Barkelew Cc: Michael D Kinney Cc: Sean Brogan Signed-off-by: Gua Guo --- BaseTools/Plugin/HostBasedUnitTestRunn

[edk2-devel] [PATCH v4 3/3] .azurepipelines: Install code coverage tool

2022-09-26 Thread Guo, Gua
From: Gua Guo For Windows add below tool for code coverage 1. OpenCppCoverage: parsing pdb file to generate coverage data 2. pycobertura: show up html format data for coverage data For Linux add below tool for code coverage 1. lcov: parsing gcda gcno file to generate coverage data 2. lcov-cobert

Re: [edk2-devel] [PATCH v4 0/3] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-28 Thread Guo, Gua
@Sean Brogan and @Kinney, Michael D Thanks for comment in Patch V3. It updated now. https://github.com/tianocore/edk2/pull/3349 Thanks, Gua -Original Message- From: Guo, Gua Sent: Tuesday, September 27, 2022 12:40 PM To: devel@edk2.groups.io Cc: Guo, Gua Subject: [PATCH v4 0/3

[edk2-devel] [PATCH 0/3] Add code coverage support for GCC

2022-09-29 Thread Guo, Gua
From: Gua Guo V1: Add coverage option for GCC V2: Add ReadMe.md for how to generate coverage report V3: Add VS2019 and GCC code coverage support V4: Add VS2019 and GCC Azure CI/CD support V5: Fix some typo and some flow issue Gua Guo (3): UnitTestFrameworkPkg: Add code coverage support for GCC

[edk2-devel] [PATCH 1/3] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-29 Thread Guo, Gua
From: Gua Guo In order to collect code coverage after running executable file, generate *.gcda and *.gcno file that require by lcov tool to generate code coverage report. Cc: Michael D Kinney Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael Kubacki Signed-off-by: Gua Guo --- UnitTestFramework

[edk2-devel] [PATCH 2/3] BaseTools/Plugin: Add coverage support for Unit Test

2022-09-29 Thread Guo, Gua
From: Gua Guo For GCC, use lcov to generate Unit Test code coverage report For VS2019, use OpenCppCoverage to generate code coverage report Cc: Bob Feng Cc: Bret Barkelew Cc: Liming Gao Cc: Michael D Kinney Cc: Sean Brogan Signed-off-by: Gua Guo --- .../HostBasedUnitTestRunner.py

[edk2-devel] [PATCH 3/3] .azurepipelines: Install code coverage tool

2022-09-29 Thread Guo, Gua
From: Gua Guo For Windows add below tool for code coverage 1. OpenCppCoverage: parsing pdb file to generate coverage data 2. pycobertura: show up html format data for coverage data For Linux add below tool for code coverage 1. lcov: parsing gcda gcno file to generate coverage data 2. lcov-cobert

[edk2-devel] [PATCH v5 0/3] Add code coverage support for GCC

2022-09-29 Thread Guo, Gua
From: Gua Guo V1: Add coverage option for GCC V2: Add ReadMe.md for how to generate coverage report V3: Add VS2019 and GCC code coverage support V4: Add VS2019 and GCC Azure CI/CD support V5: Fix some typo and some flow issue Gua Guo (3): UnitTestFrameworkPkg: Add code coverage support for GCC

[edk2-devel] [PATCH v5 1/3] UnitTestFrameworkPkg: Add code coverage support for GCC

2022-09-29 Thread Guo, Gua
From: Gua Guo In order to collect code coverage after running executable file, generate *.gcda and *.gcno file that require by lcov tool to generate code coverage report. Cc: Michael D Kinney Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael Kubacki Signed-off-by: Gua Guo --- UnitTestFramework

[edk2-devel] [PATCH v5 2/3] BaseTools/Plugin: Add coverage support for Unit Test

2022-09-29 Thread Guo, Gua
From: Gua Guo For GCC, use lcov to generate Unit Test code coverage report For VS2019, use OpenCppCoverage to generate code coverage report Cc: Bob Feng Cc: Bret Barkelew Cc: Liming Gao Cc: Michael D Kinney Cc: Sean Brogan Signed-off-by: Gua Guo --- .../HostBasedUnitTestRunner.py

[edk2-devel] [PATCH v5 3/3] .azurepipelines: Install code coverage tool

2022-09-29 Thread Guo, Gua
From: Gua Guo For Windows add below tool for code coverage 1. OpenCppCoverage: parsing pdb file to generate coverage data 2. pycobertura: show up html format data for coverage data For Linux add below tool for code coverage 1. lcov: parsing gcda gcno file to generate coverage data 2. lcov-cobert

Re: [edk2-devel] [PATCH v5 0/3] Add code coverage support for GCC

2022-09-29 Thread Guo, Gua
share for me. Thanks, Gua -Original Message- From: devel@edk2.groups.io On Behalf Of Guo, Gua Sent: Friday, September 30, 2022 9:56 AM To: devel@edk2.groups.io Cc: Guo, Gua Subject: [edk2-devel] [PATCH v5 0/3] Add code coverage support for GCC From: Gua Guo mailto:gua@intel.com&

[edk2-devel] [PATCH] UefiPayloadPkg: Remove deprecate Crypto Service

2022-10-05 Thread Guo, Gua
From: Gua Guo REF : https://bugzilla.tianocore.org/show_bug.cgi?id=4096 TDES and ARC4 services are deprecated so set it as disable. Cc: Guo Dong Cc: Ray Ni Cc: James Lu Signed-off-by: Gua Guo --- UefiPayloadPkg/UefiPayloadPkg.dsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) d

[edk2-devel] [PATCH v2] UefiPayloadPkg: Remove deprecate Crypto Service

2022-10-05 Thread Guo, Gua
From: Gua Guo REF : https://bugzilla.tianocore.org/show_bug.cgi?id=4096 TDES and ARC4 services are deprecated so set it as disable. Cc: Guo Dong Cc: Ray Ni Cc: James Lu Signed-off-by: Gua Guo --- UefiPayloadPkg/UefiPayloadPkg.dsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) d

[edk2-devel] [PATCH v3] UefiPayloadPkg: Remove deprecate Crypto Service

2022-10-05 Thread Guo, Gua
From: Gua Guo REF : https://bugzilla.tianocore.org/show_bug.cgi?id=4096 TDES and ARC4 services are deprecated so set it as disable. Cc: Guo Dong Cc: Ray Ni Cc: James Lu Signed-off-by: Gua Guo --- 0001-UefiPayloadPkg-Remove-deprecate-Crypto-Service.patch | 40 UefiPayl

[edk2-devel] [PATCH v4] UefiPayloadPkg: Remove deprecate Crypto Service

2022-10-05 Thread Guo, Gua
From: Gua Guo REF : https://bugzilla.tianocore.org/show_bug.cgi?id=4096 TDES and ARC4 services are deprecated so set it as disable. Cc: Guo Dong Cc: Ray Ni Cc: James Lu Signed-off-by: Gua Guo --- UefiPayloadPkg/UefiPayloadPkg.dsc | 2 -- 1 file changed, 2 deletions(-) diff --git a/UefiPay

Re: [edk2-devel] [PATCH] UefiPayloadPkg: Make UniversalPayloadBuild.sh executable

2022-10-06 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Sean Rhodes Sent: Friday, October 7, 2022 4:22 AM To: devel@edk2.groups.io Cc: Rhodes, Sean ; Dong, Guo ; Ni, Ray ; Lu, James ; Guo, Gua Subject: [PATCH] UefiPayloadPkg: Make UniversalPayloadBuild.sh executable Make the wrapper

Re: [edk2-devel] [PATCH v2] UefiPayloadPkg:Enhance the build processing for Universalpayload

2023-08-25 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Liu, KasimX Sent: Friday, August 25, 2023 5:28 PM To: devel@edk2.groups.io Cc: Liu, KasimX ; Dong, Guo ; Ni, Ray ; Lu, James ; Guo, Gua Subject: [PATCH v2] UefiPayloadPkg:Enhance the build processing for Universalpayload From: KasimX

Re: [edk2-devel] [PATCH 0/1] UefiPayloadPkg: Match BAR if framebuffer is at an offset

2023-09-05 Thread Guo, Gua
: michael.buech...@posteo.net ; Guo, Gua ; Dong, Guo ; Lu, James ; Rhodes, Sean ; Doron, Benjamin 主旨: Re: [edk2-devel] [PATCH 0/1] UefiPayloadPkg: Match BAR if framebuffer is at an offset Reminder: Can anyone help to review this? Thanks! On Fri, 25 Aug 2023 at 10:33, Sheng Lean Tan via

Re: [edk2-devel] [PATCH v2 2/2] UefiPayloadPkg: Add FIT support

2023-09-15 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Wang, BruceX Sent: Friday, September 15, 2023 4:58 PM To: devel@edk2.groups.io Cc: Wang, BruceX ; Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua Subject: [PATCH v2 2/2] UefiPayloadPkg: Add FIT support From: "Brucex.Wang" P

Re: [edk2-devel] [PATCH v2 1/2] MdePkg/BaseFdtLib: Add Fdt function.

2023-09-15 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Wang, BruceX Sent: Friday, September 15, 2023 4:58 PM To: devel@edk2.groups.io Cc: Wang, BruceX ; Lin, Benny ; Guo, Gua ; Chiu, Chasel ; Lu, James Subject: [PATCH v2 1/2] MdePkg/BaseFdtLib: Add Fdt function. From: "Brucex.Wang&q

Re: [edk2-devel] [PATCH v3 0/2] UefiPayloadPkg supports Fit

2023-09-16 Thread Guo, Gua
Series Reviewed-by: Gua Gua -Original Message- From: Wang, BruceX Sent: Saturday, September 16, 2023 6:53 PM To: devel@edk2.groups.io Cc: Wang, BruceX ; Guo, Gua Subject: [PATCH v3 0/2] UefiPayloadPkg supports Fit From: Gua Guo V3: Fix Lean Sheng comment in patch mail V2: Fix Gua

Re: [edk2-devel] [PATCH v4 1/2] MdePkg/BaseFdtLib: Add Fdt function.

2023-09-18 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Wang, BruceX Sent: Monday, September 18, 2023 3:02 PM To: devel@edk2.groups.io Cc: Wang, BruceX ; Lin, Benny ; Guo, Gua ; Chiu, Chasel ; Lu, James Subject: [PATCH v4 1/2] MdePkg/BaseFdtLib: Add Fdt function. From: "Brucex.Wang&q

Re: [edk2-devel] [PATCH v4 2/2] UefiPayloadPkg: Add FIT support

2023-09-18 Thread Guo, Gua
Reviewed-by: Gua Guo -Original Message- From: Wang, BruceX Sent: Monday, September 18, 2023 3:02 PM To: devel@edk2.groups.io Cc: Wang, BruceX ; Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua Subject: [PATCH v4 2/2] UefiPayloadPkg: Add FIT support From: "Brucex.Wang" P

Re: [edk2-devel] [PATCH v4 0/2] UefiPayloadPkg: Add FIT support

2023-09-18 Thread Guo, Gua
Series Reviewed-by: Gua Guo -Original Message- From: devel@edk2.groups.io On Behalf Of brucex.w...@intel.com Sent: Monday, September 18, 2023 3:02 PM To: devel@edk2.groups.io Cc: Wang, BruceX Subject: [edk2-devel] [PATCH v4 0/2] UefiPayloadPkg: Add FIT support From: "Brucex.Wang" V4

  1   2   3   >