Re: [edk2-devel] UPL: UefiPayload depends on FIT FDT, but Platform Init has no reason to load it

2024-12-10 Thread Linus Liu via groups.io
Hi Benjamin May I know what the problem in coreboot is? Thanks From: Liu, Linus Sent: Tuesday, December 10, 2024 1:42 PM To: Benjamin Doron ; devel@edk2.groups.io Cc: Dong, Guo ; Rhodes, Sean ; Lu, James ; Guo, Gua ; Chiu, Chasel Subject: RE: UPL: UefiPayload depends on FIT FDT, but Platform

Re: [edk2-devel] UPL: UefiPayload depends on FIT FDT, but Platform Init has no reason to load it

2024-12-09 Thread Linus Liu via groups.io
Add Chasel. From: Benjamin Doron Sent: Tuesday, December 10, 2024 11:28 AM To: devel@edk2.groups.io Cc: Dong, Guo ; Rhodes, Sean ; Lu, James ; Liu, Linus ; Guo, Gua Subject: UPL: UefiPayload depends on FIT FDT, but Platform Init has no reason to load it Hi, In https://github.com/tianocore

[edk2-devel] [PATCH v4 6/6] UefiPayloadPkg: Update UefiPayload driver for FDT support.

2024-06-02 Thread Linus Liu
Add FDT detection and comsume FDT when needed. Move some x86 specific function in the x86 folder. Create HandOffHob via FDT memory node. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/UefiPayloadEntry

[edk2-devel] [PATCH v4 5/6] UefiPayloadPkg: Add FDT Paser relative LIBs.

2024-06-02 Thread Linus Liu
Add FDTParser and CustomFdtNodePaser to retrive all FDT node and create the relate hobs. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Library/CustomFdtNodeParserLib/CustomFdtNodeParserLib.c | 158

[edk2-devel] [PATCH v4 4/6] UefiPayloadPkg: Update PayloadLoader to suport FDT.

2024-06-02 Thread Linus Liu
Create FDT nodes (reserved-memory, serial, pci-rb, options) in FdtPpiNotifyCallback function right after gEfiEndOfPeiSignalPpiGuid. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/PayloadLoaderPeim/FitPayloadLoaderPeim.c

[edk2-devel] [PATCH v4 3/6] UefiPayloadPkg: Support Debug function when Hob was not available.

2024-06-02 Thread Linus Liu
Initialize mUartInfo with PCD for debug message when Hob was not available. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Library/BaseSerialPortLibHob/BaseSerialPortLibHob.c | 69

[edk2-devel] [PATCH v4 2/6] UefiPayloadPkg: Addd header files for FDT structure and function.

2024-06-02 Thread Linus Liu
Add Library header, DeviceTree hob header and PCD definitions. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Include/Guid/UniversalPayloadBase.h | 2 + UefiPayloadPkg/Include/Library/FdtParserLib.h| 64

[edk2-devel] [PATCH v4 1/6] MdePkg: Fix build error after enable FDT support.

2024-06-02 Thread Linus Liu
Disable some compiling warnings caused by submodule code. Those can be removed later once issues fixed by submodule owner. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- MdePkg/Library/BaseFdtLib/BaseFdtLib.inf | 7 +-- 1 file

[edk2-devel] [PATCH v4 0/6] To align with ecosystem common interface, the FDT support is added to Universal Payload)

2024-06-02 Thread Linus Liu
PR : https://github.com/tianocore/edk2/pull/5669 V2: Update typo [3/6] avalible ,[6/6] speciifc, HandOffhbo V3: Update cover letter content. V4: Update [4/6] BuildFdtForSerial, [5/6] ParseDtb - serial node , base address content. *** BLURB HERE *** Linus Liu (6): MdePkg: Fix build error

[edk2-devel] [PATCH v3 6/6] UefiPayloadPkg: Update UefiPayload driver for FDT support.

2024-05-23 Thread Linus Liu
Add FDT detection and comsume FDT when needed. Move some x86 specific function in the x86 folder. Create HandOffHob via FDT memory node. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/UefiPayloadEntry

[edk2-devel] [PATCH v3 5/6] UefiPayloadPkg: Add FDT Paser relative LIBs.

2024-05-23 Thread Linus Liu
Add FDTParser and CustomFdtNodePaser to retrive all FDT node and create the relate hobs. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Library/CustomFdtNodeParserLib/CustomFdtNodeParserLib.c | 158

[edk2-devel] [PATCH v3 4/6] UefiPayloadPkg: Update PayloadLoader to suport FDT.

2024-05-23 Thread Linus Liu
Create FDT nodes (reserved-memory, serial, pci-rb, options) in FdtPpiNotifyCallback function right after gEfiEndOfPeiSignalPpiGuid. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/PayloadLoaderPeim/FitPayloadLoaderPeim.c

[edk2-devel] [PATCH v3 3/6] UefiPayloadPkg: Support Debug function when Hob was not available.

2024-05-23 Thread Linus Liu
Initialize mUartInfo with PCD for debug message when Hob was not available. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Library/BaseSerialPortLibHob/BaseSerialPortLibHob.c | 69

[edk2-devel] [PATCH v3 2/6] UefiPayloadPkg: Addd header files for FDT structure and function.

2024-05-23 Thread Linus Liu
Add Library header, DeviceTree hob header and PCD definitions. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Include/Guid/UniversalPayloadBase.h | 2 + UefiPayloadPkg/Include/Library/FdtParserLib.h| 64

[edk2-devel] [PATCH v3 1/6] MdePkg: Fix build error after enable FDT support.

2024-05-23 Thread Linus Liu
Disable some compiling warnings caused by submodule code. Those can be removed later once issues fixed by submodule owner. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- MdePkg/Library/BaseFdtLib/BaseFdtLib.inf | 7 +-- 1 file

[edk2-devel] [PATCH v3 0/6] *** FDT support in Universal Payload ***

2024-05-23 Thread Linus Liu
To align with ecosystem common interface, the FDT support is added to Universal Payload) PR : https://github.com/tianocore/edk2/pull/5669 V2: Update typo [3/6] avalible ,[6/6] speciifc, HandOffhbo V3: Update cover letter content. *** BLURB HERE *** Linus Liu (6): MdePkg: Fix build error

[edk2-devel] [PATCH v2 6/6] UefiPayloadPkg: Update UefiPayload driver for FDT support.

2024-05-23 Thread Linus Liu
Add FDT detection and comsume FDT when needed. Move some x86 specific function in the x86 folder. Create HandOffHob via FDT memory node. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/UefiPayloadEntry

[edk2-devel] [PATCH v2 5/6] UefiPayloadPkg: Add FDT Paser relative LIBs.

2024-05-23 Thread Linus Liu
Add FDTParser and CustomFdtNodePaser to retrive all FDT node and create the relate hobs. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Library/CustomFdtNodeParserLib/CustomFdtNodeParserLib.c | 158

[edk2-devel] [PATCH v2 4/6] UefiPayloadPkg: Update PayloadLoader to suport FDT.

2024-05-23 Thread Linus Liu
Create FDT nodes (reserved-memory, serial, pci-rb, options) in FdtPpiNotifyCallback function right after gEfiEndOfPeiSignalPpiGuid. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/PayloadLoaderPeim/FitPayloadLoaderPeim.c

[edk2-devel] [PATCH v2 3/6] UefiPayloadPkg: Support Debug function when Hob was not available.

2024-05-23 Thread Linus Liu
Initialize mUartInfo with PCD for debug message when Hob was not available. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Library/BaseSerialPortLibHob/BaseSerialPortLibHob.c | 69

[edk2-devel] [PATCH v2 2/6] UefiPayloadPkg: Addd header files for FDT structure and function.

2024-05-23 Thread Linus Liu
Add Library header, DeviceTree hob header and PCD definitions. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Include/Guid/UniversalPayloadBase.h | 2 + UefiPayloadPkg/Include/Library/FdtParserLib.h| 64

[edk2-devel] [PATCH v2 1/6] MdePkg: Fix build error after enable FDT support.

2024-05-23 Thread Linus Liu
Disable some compiling warnings caused by submodule code. Those can be removed later once issues fixed by submodule owner. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- MdePkg/Library/BaseFdtLib/BaseFdtLib.inf | 7 +-- 1 file

[edk2-devel] [PATCH v2 0/6] *** SUBJECT HERE ***

2024-05-23 Thread Linus Liu
*** BLURB HERE *** Linus Liu (6): MdePkg: Fix build error after enable FDT support. UefiPayloadPkg: Addd header files for FDT structure and function. UefiPayloadPkg: Support Debug function when Hob was not available. UefiPayloadPkg: Update PayloadLoader to suport FDT. UefiPayloadPkg

[edk2-devel] [PATCH v1 6/6] UefiPayloadPkg: Update UefiPayload driver for FDT support.

2024-05-23 Thread Linus Liu
Add FDT detection and comsume FDT when needed. Move some x86 speciifc function in the x86 folder. Create HandOffHbo via FDT memory node. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/UefiPayloadEntry

[edk2-devel] [PATCH v1 6/6] UefiPayloadPkg: Update UefiPayload driver for FDT support.

2024-05-23 Thread Linus Liu
Add FDT detection and comsume FDT when needed. Move some x86 speciifc function in the x86 folder. Create HandOffHbo via FDT memory node. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/UefiPayloadEntry

[edk2-devel] [PATCH v1 5/6] UefiPayloadPkg: Add FDT Paser relative LIBs.

2024-05-23 Thread Linus Liu
Add FDTParser and CustomFdtNodePaser to retrive all FDT node and create the relate hobs. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Library/CustomFdtNodeParserLib/CustomFdtNodeParserLib.c | 158

[edk2-devel] [PATCH v1 4/6] UefiPayloadPkg: Update PayloadLoader to suport FDT.

2024-05-23 Thread Linus Liu
Create FDT nodes (reserved-memory, serial, pci-rb, options) in FdtPpiNotifyCallback function right after gEfiEndOfPeiSignalPpiGuid. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/PayloadLoaderPeim/FitPayloadLoaderPeim.c

[edk2-devel] [PATCH v1 3/6] UefiPayloadPkg: Support Debug function when Hob was not avalible.

2024-05-23 Thread Linus Liu
Initialize mUartInfo with PCD for debug message when Hob was not avalible. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Library/BaseSerialPortLibHob/BaseSerialPortLibHob.c | 69

[edk2-devel] [PATCH v1 2/6] UefiPayloadPkg: Addd header files for FDT structure and function.

2024-05-23 Thread Linus Liu
Add Library header, DeviceTree hob header and PCD definitions. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- UefiPayloadPkg/Include/Guid/UniversalPayloadBase.h | 2 + UefiPayloadPkg/Include/Library/FdtParserLib.h| 64

[edk2-devel] [PATCH v1 1/6] MdePkg: Fix build error after enable FDT support.

2024-05-23 Thread Linus Liu
Disable some compiling warnings caused by submodule code. Those can be removed later once issues fixed by submodule owner. Cc: Benny Lin Cc: Gua Guo Cc: Chasel Chiu Cc: James Lu Cc: Dhaval Sharma Signed-off-by: Linus Liu --- MdePkg/Library/BaseFdtLib/BaseFdtLib.inf | 7 +-- 1 file

Re: [edk2-devel] [PATCH v2] Pyrite support - Secure erase is only available if encryption is supported.

2023-09-11 Thread Linus Liu
] [PATCH v2] Pyrite support - Secure erase is only available if encryption is supported. On Thu, 7 Sept 2023 at 11:02, Linus Liu wrote: > > From: Linus Liu > > https://bugzilla.tianocore.org/show_bug.cgi?id=3004 > > Cc: Qi Zhang > Cc: Rahul Kumar > Cc: Jiewen Yao >

[edk2-devel] [PATCH v3] Pyrite support - Secure erase is only available if encryption is supported.

2023-09-11 Thread Linus Liu
From: Linus Liu https://bugzilla.tianocore.org/show_bug.cgi?id=3004 Cc: Qi Zhang Cc: Rahul Kumar Cc: Jiewen Yao Cc: Tina Chen Cc: Xiao X Chen Signed-off-by: Linus Liu --- SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff

[edk2-devel] [PATCH v2] Pyrite support - Secure erase is only available if encryption is supported.

2023-09-07 Thread Linus Liu
From: Linus Liu https://bugzilla.tianocore.org/show_bug.cgi?id=3004 Cc: Qi Zhang Cc: Rahul Kumar Cc: Jiewen Yao Cc: Tina Chen Cc: Xiao X Chen --- SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SecurityPkg/Tcg

Re: [edk2-devel] [PATCH v1] Pyrite support - Secure erase is only available if encryption is supported.

2023-09-05 Thread Linus Liu
++ Tina , Chen Xiao -Original Message- From: devel@edk2.groups.io On Behalf Of Linus Liu Sent: Monday, September 4, 2023 4:38 PM To: devel@edk2.groups.io Cc: Liu, Linus ; Zhang, Qi1 ; Kumar, Rahul R ; Yao, Jiewen Subject: [edk2-devel] [PATCH v1] Pyrite support - Secure erase is only

[edk2-devel] [PATCH v1] Pyrite support - Secure erase is only available if encryption is supported.

2023-09-04 Thread Linus Liu
From: Linus Liu https://bugzilla.tianocore.org/show_bug.cgi?id=3004 Cc: Qi Zhang Cc: Rahul Kumar Cc: Jiewen Yao --- SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SecurityPkg/Tcg/Opal/OpalPassword/OpalDriver.c b

Re: [edk2-devel] [PATCH] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-05-07 Thread Linus Liu
E39-00A0C969723B > > > > 67EA1370 > > > > InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 > > > > 68153DB0 > > > > HddPasswordDxeInit(): Lock HddPassword variable (Success) > > > > > > > > > > > >

Re: [edk2-devel] [PATCH] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-05-07 Thread Linus Liu
2.groups.io > > > Cc: FST-FIR-PRC ; FST FIR Server > > > ; Chu, Maggie > > > Subject: RE: [PATCH] Securitypkg/hddpassword: Update > > > HddPasswordDxeInit to use Variable Policy > > > > > > Thanks. The patch loos good to me. > > > > &

Re: [edk2-devel] [PATCH] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-05-03 Thread Linus Liu
evel@edk2.groups.io > > Cc: Yao, Jiewen ; FST-FIR-PRC > p...@intel.com>; FST FIR Server ; Chu, > > Maggie > > Subject: [PATCH] Securitypkg/hddpassword: Update HddPasswordDxeInit > to > > use Variable Policy > > > > REF: https://bugzilla.

Re: [edk2-devel] [PATCH] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-05-02 Thread Linus Liu
able Policy > > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 > > Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c > Cc: Jiewen Yao > Cc: FST-FIR-PRC > Cc: FST FIR Server C > Cc: Maggie Chu > Signed-off-by: Linus Liu > --- > SecurityPkg/HddPass

Re: [edk2-devel] [PATCH v1] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-27 Thread Linus Liu
HddPasswordDxeInit to use Variable Policy From: Linus Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Cc: Jiewen Yao Cc: Maggie Chu Cc: Kumar Rahul Signed-off-by: Linus Liu --- SecurityPkg/HddPassword/HddPasswordDxe.c | 20 +--- SecurityPkg/HddPassword

[edk2-devel] [PATCH v1] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-27 Thread Linus Liu
From: Linus Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Cc: Jiewen Yao Cc: Maggie Chu Cc: Kumar Rahul Signed-off-by: Linus Liu --- SecurityPkg/HddPassword/HddPasswordDxe.c | 20 +--- SecurityPkg/HddPassword/HddPasswordDxe.h | 1 - SecurityPkg

Re: [edk2-devel] [PATCH v1] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-27 Thread Linus Liu
/hddpassword: Update HddPasswordDxeInit to use Variable Policy Hi Zhang and Kumar Could you help to review this patch ? Thanks. From: Linus Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c Cc: Jiewen Yao Cc: Maggie Chu Signed-off-by

Re: [edk2-devel] [PATCH v1] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-19 Thread Linus Liu
Hi Qi1 and Jiewen Could you help to review this patch ? Thanks. From: Linus Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c Cc: Jiewen Yao Cc: Maggie Chu Signed-off-by: Linus Liu --- SecurityPkg/HddPassword

Re: [edk2-devel] [PATCH v1] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-18 Thread Linus Liu
Hi Zhang and Kumar Could you help to review this patch ? Thanks. From: Linus Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c Cc: Jiewen Yao Cc: Maggie Chu Signed-off-by: Linus Liu --- SecurityPkg/HddPassword

[edk2-devel] [PATCH v1] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-12 Thread Linus Liu
From: Linus Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c Cc: Jiewen Yao Cc: Maggie Chu Signed-off-by: Linus Liu --- SecurityPkg/HddPassword/HddPasswordDxe.c | 28 SecurityPkg/HddPassword

[edk2-devel] [PATCH v1] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-12 Thread Linus Liu
From: Linus Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c Cc: Jiewen Yao Cc: Maggie Chu Signed-off-by: Linus Liu --- SecurityPkg/HddPassword/HddPasswordDxe.c | 16 +++- SecurityPkg/HddPassword/HddPasswordDxe.h

[edk2-devel] [PATCH v1] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-12 Thread Linus Liu
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c Cc: Jiewen Yao Cc: FST-FIR-PRC Cc: FST FIR Server C Cc: Maggie Chu Signed-off-by: Linus Liu --- SecurityPkg/HddPassword/HddPasswordDxe.c | 16 +++- SecurityPkg

[edk2-devel] [PATCH v1] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-12 Thread Linus Liu
From: Linus Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c Cc: Jiewen Yao Cc: FST-FIR-PRC Cc: FST FIR Server C Cc: Maggie Chu Signed-off-by: Linus Liu --- SecurityPkg/HddPassword/HddPasswordDxe.c | 16

[edk2-devel] [PATCH] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-12 Thread Linus Liu
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c Cc: Jiewen Yao , Jian J Wang , Maggie Chu Signed-off-by: Linus Liu --- SecurityPkg/HddPassword/HddPasswordDxe.c | 16 +++- SecurityPkg/HddPassword/HddPasswordDxe.h | 1

[edk2-devel] [PATCH] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-12 Thread Linus Liu
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c Cc: Jiewen Yao Cc: Jian J Wang Cc: Maggie Chu Signed-off-by: Linus Liu --- SecurityPkg/HddPassword/HddPasswordDxe.c | 16 +++- SecurityPkg/HddPassword/HddPasswordDxe.h

[edk2-devel] [PATCH] Securitypkg/hddpassword: Update HddPasswordDxeInit to use Variable Policy

2023-04-12 Thread Linus Liu
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4408 Change-Id: I3c4b466ef318766d6d70c9f73e36b94b5f10832c Cc: Jiewen Yao Cc: FST-FIR-PRC Cc: FST FIR Server C Cc: Maggie Chu Signed-off-by: Linus Liu --- SecurityPkg/HddPassword/HddPasswordDxe.c | 16 +++- SecurityPkg

[edk2-devel] alderlake code build fail under win10

2021-09-10 Thread Linus Liu
Dear Sir I am trying to build the alder lake code, but got something wrong. Could you kindly give some help on it? Thanks a lot. build.py... : error C0DE: Tools code failure Please send email to devel@edk2.groups.io for help, attaching following call stack trace! Traceback (most recent

Re: [edk2-devel] building-edkii-eufi-firmware-for-arm-platforms fail on windows 10.

2021-09-02 Thread Linus Liu
Dear Sirs Update status After installing MinGW. Can build pass on windows platform. Thanks for supports Sincerely Linus From: Linus Liu Sent: Thursday, September 2, 2021 2:19 PM To: 'Sami Mujawar'; devel@edk2.groups.io; 'pierre.gond...@arm.com' Cc: nd Subject: RE: [edk2-d

Re: [edk2-devel] building-edkii-eufi-firmware-for-arm-platforms fail on windows 10.

2021-09-02 Thread Linus Liu
2021 8:09 PM To: Linus Liu; devel@edk2.groups.io Subject: Re: [edk2-devel] building-edkii-eufi-firmware-for-arm-platforms fail on windows 10. Hi Linus, I ran in the same error as you on linux while using Python2.7. The command completed successfully with Python 3.6.9, so Python 3.X should