Re: [edk2] [staging/MicroPythonTestFramework]: MicroPython Test Framework for UEFI

2018-10-21 Thread Long, Qin
Hi, Leif, Yes, we missed clear descriptions about these two external projects in staging/MicroPythonTestFramework. Sorry about that. The MicroPython and Oniguruma projects were used as git submodule in this project. So you can use “git submodule” to know the specific commit information:

[edk2] [Patch] BaseTools: Move PcdValueInit to platform build folder

2018-10-21 Thread BobCF
PcdValueInit tool is platform scope. It should be generated into Platform output directory. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Bob C Feng Cc: Liming Gao --- .../Source/Python/Workspace/DscBuildData.py | 25 +-- 1 file changed, 17

Re: [edk2] [PATCH v2] Edk2Platforms: Replace FatBinPkg with FatPkg

2018-10-21 Thread Yao, Jiewen
Reviewed-by: jiewen@intel.com > -Original Message- > From: Zhang, Shenglei > Sent: Monday, October 22, 2018 11:03 AM > To: Yao, Jiewen ; 'edk2-devel@lists.01.org' > > Cc: Zhang, Shenglei > Subject: RE: [edk2] [PATCH v2] Edk2Platforms: Replace FatBinPkg with > FatPkg > > Hi Jiewen,

Re: [edk2] [PATCH v2] Edk2Platforms: Replace FatBinPkg with FatPkg

2018-10-21 Thread Zhang, Shenglei
Hi Jiewen, After my test, the KabyLake Platform based on my changes can be booted to Shell successfully. And a disk can be recognized correctly. Thanks, Shenglei > -Original Message- > From: Zhang, Shenglei > Sent: Thursday, October 18, 2018 4:38 PM > To: Yao, Jiewen ;

Re: [edk2] [PATCH 3/3] MdeModulePkg/Core: add use-after-free memory detection

2018-10-21 Thread Zeng, Star
On 2018/10/19 9:50, Jian J Wang wrote: UAF (Use-After-Free) memory detection is new feature introduced to detect illegal access to memory which has been freed. The principle behind is similar to heap guard feature, that is the core turn all pool memory allocation to page allocation and mark them

Re: [edk2] [PATCH v1 2/2] EmbeddedPkg/Drivers: add DwUsb3Dxe driver

2018-10-21 Thread Haojian Zhuang
On Fri, 5 Oct 2018 at 00:32, Leif Lindholm wrote: > > On Mon, Aug 20, 2018 at 06:31:25PM +0800, Haojian Zhuang wrote: > > Add Designware USB 3.0 device driver. It's focus on USB device > > functionality, not USB Host functionality. The USB driver is > > mainly used for Android Fastboot

Re: [edk2] [PATCH v1 1/2] EmbeddedPkg: add DwUsb protocol

2018-10-21 Thread Haojian Zhuang
On Thu, 4 Oct 2018 at 22:49, Leif Lindholm wrote: > > On Mon, Aug 20, 2018 at 06:31:24PM +0800, Haojian Zhuang wrote: > > The protocol defines the callbacks that could be implemented in > > platform driver. DwUsb device driver needs these callbacks to > > implement USB device functionality. > > >

Re: [edk2] [PATCH v1 1/1] EmbeddedPkg/Drivers: add DwUsbDxe

2018-10-21 Thread Haojian Zhuang
On Fri, 5 Oct 2018 at 23:46, Leif Lindholm wrote: > > On Tue, Aug 21, 2018 at 07:35:13PM +0800, Haojian Zhuang wrote: > > Add Designware USB 2.0 device driver that is used on HiKey platform. > > > > Cc: Leif Lindholm > > Cc: Ard Biesheuvel > > Contributed-under: TianoCore Contribution Agreement

Re: [edk2] [PATCH 1/3] MdeModulePkg/MdeModulePkg.dec: add new PCD for UAF detection feature

2018-10-21 Thread Zeng, Star
On 2018/10/19 9:50, Jian J Wang wrote: UAF (Use-After-Free) memory detection is new feature introduced to detect illegal access to memory which has been freed. The principle behind is similar to heap guard feature, that is we'll turn all pool memory allocation to page allocation and mark them to

Re: [edk2] [PATCH v1 0/2] add DwUsb3Dxe driver

2018-10-21 Thread Haojian Zhuang
On Thu, 4 Oct 2018 at 22:15, Leif Lindholm wrote: > > Hi Haojian, > > I will start with a few high-level requests: > - Could you rework this for inclusion in edk2-platforms instead? > Silicon/Synopsys I guess? Sure. I'll rework it into edk2-platforms. > - Could you submit Usb2 and Usb3

Re: [edk2] [PATCH v1 1/1] BaseTools: delete unused file

2018-10-21 Thread Zhu, Yonghong
Reviewed-by: Yonghong Zhu Best Regards, Zhu Yonghong -Original Message- From: Carsey, Jaben Sent: Thursday, October 11, 2018 7:30 AM To: edk2-devel@lists.01.org Cc: Gao, Liming ; Zhu, Yonghong Subject: [PATCH v1 1/1] BaseTools: delete unused file this file is not imported/used.

Re: [edk2] [Patch] BaseTools: Fixed a key error code bug.

2018-10-21 Thread Feng, Bob C
Cool. -Original Message- From: Zhu, Yonghong Sent: Sunday, October 21, 2018 7:50 PM To: Feng, Bob C ; edk2-devel@lists.01.org Cc: Gao, Liming ; Zhu, Yonghong Subject: RE: [edk2] [Patch] BaseTools: Fixed a key error code bug. Hi Bob, I fixed this issue by below patch, I will check in

Re: [edk2] [Patch] BaseTools: Fixed a key error code bug.

2018-10-21 Thread Zhu, Yonghong
Hi Bob, I fixed this issue by below patch, I will check in the patch soon. https://lists.01.org/pipermail/edk2-devel/2018-October/031161.html Best Regards, Zhu Yonghong -Original Message- From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of BobCF Sent: Sunday,

[edk2] [Patch] BaseTools: Fixed a key error code bug.

2018-10-21 Thread BobCF
There is a code bug that used a wrong key. This Patch is to correct it. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Bob Feng Cc: Liming Gao --- BaseTools/Source/Python/AutoGen/AutoGen.py | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

Re: [edk2] [PATCH V2] BaseTools: Convert "Unicode string" to "byte array" if value type diff

2018-10-21 Thread Feng, Bob C
Reviewed-by: Bob Feng -Original Message- From: Zhao, ZhiqiangX Sent: Thursday, October 18, 2018 1:09 PM To: edk2-devel@lists.01.org Cc: Zhao, ZhiqiangX ; Gao, Liming ; Zhu, Yonghong ; Feng, Bob C Subject: [PATCH V2] BaseTools: Convert "Unicode string" to "byte array" if value type

Re: [edk2] [PATCH V2] BaseTool: Support different PCDs that refers to the same EFI variable.

2018-10-21 Thread Feng, Bob C
Reviewed-by: Bob Feng -Original Message- From: Zhao, ZhiqiangX Sent: Thursday, October 18, 2018 3:12 PM To: edk2-devel@lists.01.org Cc: Zhao, ZhiqiangX ; Gao, Liming ; Zhu, Yonghong ; Feng, Bob C Subject: [PATCH V2] BaseTool: Support different PCDs that refers to the same EFI