Re: [edk2] [PATCH] MdeModulePkg: Fix bug of AllocatePages for large alignment

2015-06-07 Thread Heyi Guo
OK, thanks! On 06/08/2015 12:38 PM, Tian, Feng wrote: > Liming is the DxeCore module owner. > > I own the whole MdeModulePkg, and may dispatch community patch/review request > to corresponding owner if it's not straightforward for me. > > The review process from your side is ok. Don't worry about

[edk2] [Patch] BaseTools: Append FILE_GUID to basename if basename is not unique.

2015-06-07 Thread Yingke Liu
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yingke Liu --- BaseTools/Source/Python/AutoGen/AutoGen.py| 3 ++- BaseTools/Source/Python/Common/Misc.py| 27 +++ BaseTools/Source/Python/GenFds/FfsInfStatement.py | 5 - 3 files c

[edk2] [PATCH] MdePkg: Add EFI REST Protocol definitions

2015-06-07 Thread Hao Wu
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu Reviewed-by: Liming Gao --- MdePkg/Include/Protocol/Rest.h | 94 ++ MdePkg/MdePkg.dec | 3 ++ 2 files changed, 97 insertions(+) create mode 100644 MdePkg/Include/P

Re: [edk2] [PATCH v3 4/8] BaseTools/UniClassObject: Verify valid UCS-2 chars in UTF-16 .uni files

2015-06-07 Thread Jordan Justen
On 2015-06-07 20:44:16, Kinney, Michael D wrote: > + > +TheUcs2Codec = Ucs2Codec() > > This is creating a global object in this module for the USC-2 codec. > Needs a comment to describe this. Ok. How about: ## Instance of Ucs2Codec class # # This object is used to support a codec for UCS-2 enco

[edk2] [patch] EDKII:Display engine should not depend on the framework code

2015-06-07 Thread Bi, Dandan
Display engine base on class opcode to detect whether in frontpage form.Now remove class/subclass and use ClassGuid to judge whether in frontpage form Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi --- .../Universal/BdsDxe/FrontPageVfr.Vfr | 4 +---

Re: [edk2] [Patch] SourceLevelDebugPkg/DebugAgent: Disable Debug Timer as early

2015-06-07 Thread Ni, Ruiyu
Reviewed-by: Ruiyu Ni > -Original Message- > From: Fan, Jeff > Sent: Friday, June 5, 2015 4:27 PM > To: edk2-devel@lists.sourceforge.net > Cc: Ni, Ruiyu > Subject: [Patch] SourceLevelDebugPkg/DebugAgent: Disable Debug Timer as > early > > InitializeApicTimer() will enable Local APIC time

Re: [edk2] [Patch]Vlv2TbltDevicePkg: Update FCE tool for MinnowBoard Max

2015-06-07 Thread He, Tim
Hi David, The FCE tool is binary format, so we can't see the changes in this attached patch. the FCE tool is rebuilt by myself in order to remove the default "RUNTIME ACCESS" attribute for variables. Best Regards, Tim From: Wei, David Sent: Monday, June 08, 2015 11:45 AM To: He, Tim; edk2-dev

Re: [edk2] [PATCH 0/3] Make DebugLib and PrintLib support %u and %lu formats.

2015-06-07 Thread Gao, Liming
Reviewed-by: Liming Gao -Original Message- From: Qiu, Shumin Sent: Friday, June 05, 2015 4:12 PM To: edk2-devel@lists.sourceforge.net Cc: Gao, Liming Subject: [PATCH 0/3] Make DebugLib and PrintLib support %u and %lu formats. Add %u and %lu support for PrintLib and DebugLib. Qiu Shumin

Re: [edk2] [PATCH v2] MdePkg: Add EFI Capsule Report data structure and GUID

2015-06-07 Thread Gao, Liming
Reviewed-by: Liming Gao -Original Message- From: Zhang, Chao B [mailto:chao.b.zh...@intel.com] Sent: Monday, June 08, 2015 11:31 AM To: edk2-devel@lists.sourceforge.net Cc: Zhang, Chao B Subject: [edk2] [PATCH v2] MdePkg: Add EFI Capsule Report data structure and GUID Add EFI Capsule R

Re: [edk2] [PATCH] MdeModulePkg: Fix bug of AllocatePages for large alignment

2015-06-07 Thread Tian, Feng
Liming is the DxeCore module owner. I own the whole MdeModulePkg, and may dispatch community patch/review request to corresponding owner if it's not straightforward for me. The review process from your side is ok. Don't worry about that:-) Thanks Feng -Original Message- From: Heyi Guo

Re: [edk2] [PATCH] MdeModulePkg: Fix bug of AllocatePages for large alignment

2015-06-07 Thread Heyi Guo
Thanks Liming. I saw Tian is the maintainer of MdeModulePkg, so I had sent the mail to him. It will be great if you could help to commit this change :) On 06/08/2015 11:18 AM, Gao, Liming wrote: > Heyi: >Thanks for your catch issue. It only happens when the default alignment is > differen

Re: [edk2] [PATCH v3 4/8] BaseTools/UniClassObject: Verify valid UCS-2 chars in UTF-16 .uni files

2015-06-07 Thread Kinney, Michael D
Jordan, The functionality of the patch set looks good. Just a few comments below about needing some better comments. Reviewed-by: Michael Kinney We also discussed the need for an extra tool that can scan a workspace or a package for UNI files and convert them to UTF-16LE. This tool may be

Re: [edk2] [Patch]Vlv2TbltDevicePkg: Update FCE tool for MinnowBoard Max

2015-06-07 Thread Wei, David
Hi Tim, The FCE is not included in the attached patch. Which version of FCE tool is it? Thanks, David | SSG BIOS From: He, Tim Sent: Monday, June 08, 2015 11:27 AM To: edk2-devel@lists.sourceforge.net Cc: Wei, David; Wu, Mike; Lu, ShifeiX A Subject: [edk2][Patch]Vlv2TbltDevicePkg: Update FCE too

[edk2] [PATCH v2] MdePkg: Add EFI Capsule Report data structure and GUID

2015-06-07 Thread Zhang, Chao B
Add EFI Capsule Report data structure and GUID. It is defined in UEFI2.4A Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Chao Zhang --- MdePkg/Include/Guid/CapsuleReport.h | 105 MdePkg/MdePkg.dec | 3 ++ 2 files ch

[edk2] [Patch]Vlv2TbltDevicePkg: Update FCE tool for MinnowBoard Max

2015-06-07 Thread He, Tim
Update the FCE tool to remove "runtime access" for some variables default attribute. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Tim He mailto:tim...@intel.com>> Best Regards, Tim --

[edk2] [Patch]Vlv2TbltDevicePkg: Update FCE tool for MinnowBoard Max

2015-06-07 Thread He, Tim
Update the FCE tool to remove "runtime access" for some variables default attribute. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Tim He mailto:tim...@intel.com>> Best Regards, Tim UpdateFceToolRemoveRTattribute.patch Description: UpdateFceToolRemoveRTattribute.patc

Re: [edk2] [PATCH] MdeModulePkg: Fix bug of AllocatePages for large alignment

2015-06-07 Thread Gao, Liming
Heyi: Thanks for your catch issue. It only happens when the default alignment is different. Now, only Arm Arch64 uses the different alignments for the different memory types. So, you meet with this issue on QEMU AARCH64 UEFI. I agree your fix. Reviewed-by: Liming Gao Btw: if you need my

Re: [edk2] [Patch] MdePkg: Add EFI Capsule Report data structure and GUID

2015-06-07 Thread Gao, Liming
Chao: The GuidCName should be gEfiCapsuleReportGuid instead of gEfiFmpCapsuleGuid. -Original Message- From: Zhang, Chao B [mailto:chao.b.zh...@intel.com] Sent: Monday, June 08, 2015 10:35 AM To: edk2-devel@lists.sourceforge.net Cc: Zhang, Chao B Subject: [edk2] [Patch] MdePkg: Add EFI C

[edk2] [Patch] MdePkg: Add EFI Capsule Report data structure and GUID

2015-06-07 Thread Zhang, Chao B
Add EFI Capsule Report data structure and GUID. It is defined in UEFI2.4A Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Chao Zhang --- MdePkg/Include/Guid/CapsuleReport.h | 105 MdePkg/MdePkg.dec | 5 +- 2 files ch

[edk2] [PATCH] ShellPkg: Fix the Non-ASCII char and do code refine.

2015-06-07 Thread Qiu Shumin
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin --- ShellPkg/Library/UefiShellLevel2CommandsLib/Parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ShellPkg/Library/UefiShellLevel2CommandsLib/Parse.c b/ShellPkg/Library/UefiShellLevel2

Re: [edk2] [PATCH] MdeModulePkg: Fix bug of AllocatePages for large alignment

2015-06-07 Thread Heyi Guo
Hi Tian, Do you have any comments on this patch? Thanks! On 06/05/2015 09:57 AM, Heyi Guo wrote: > Hi Ard, > > I got this error when running SCT against QEMU AARCH64 UEFI. I think > it will only happen for aarch64 runtime services allocation, because > only this type of memory requires more th

Re: [edk2] UEFI HTTP Boot and Redfish support?

2015-06-07 Thread Ye, Ting
Intel is working on implementation of UEFI 2.5 HTTP boot support. Best Regards, Ye Ting -Original Message- From: Blibbet [mailto:blib...@gmail.com] Sent: Saturday, June 06, 2015 7:00 AM To: edk2-devel@lists.sourceforge.net Subject: [edk2] UEFI HTTP Boot and Redfish support? HP gave a ta

Re: [edk2] [Patch] MdePkg: Add header files for DNS/HTTP/IP4Config2.

2015-06-07 Thread Fu, Siyuan
Jiaxin The patch is good to me. Reviewed-by: Fu Siyuan -Original Message- From: jiaxinwu [mailto:jiaxin...@intel.com] Sent: Friday, June 05, 2015 9:56 AM To: edk2-devel@lists.sourceforge.net Subject: [edk2] [Patch] MdePkg: Add header files for DNS/HTTP/IP4Config2. Contributed-under: Ti

[edk2] [PATCH v2] OvmfPkg/PlatformPei: Initialise RCBA (B0:D31:F0 0xf0) register

2015-06-07 Thread Paulo Alcantara
This patch initialises root complex register block BAR in order to support TCO watchdog emulation features (e.g. reboot upon NO_REBOOT bit not set) on QEMU. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Paulo Alcantara --- OvmfPkg/Include/IndustryStandard/Q35MchIch9.h |

Re: [edk2] [PATCH] OvmfPkg/PlatformPei: Initialise RCBA (B0:D31:F0 0xf0) register

2015-06-07 Thread Paulo Alcantara
On Sat, 06 Jun 2015 22:13:21 -0700 Jordan Justen wrote: > On 2015-06-06 12:10:03, Paulo Alcantara wrote: > > This patch initialises root complex register block BAR in order to > > support TCO watchdog emulation features (e.g. reboot upon NO_REBOOT > > bit not set) on QEMU. > > > > Contributed-un

Re: [edk2] [Xen-devel] The size of memory is wrong inside of virtual machine(VM) when using OVMF

2015-06-07 Thread Wei Liu
On Mon, Jun 01, 2015 at 09:13:08AM +, Maoming wrote: > Hi all: >I encountered a troublesome problem about OVMF. >I used OVMF.fd as a BIOS of virtual machine(VM). > >1、my environment: >xen_version: 4.6-unstable >I git clone xen from git://xenb

Re: [edk2] Question about PEX boot on Xen with OVMF as bios

2015-06-07 Thread Wei Liu
Hi Please CC me and Anthony (CC'ed) in the future if you have questions regarding OVMF on Xen. On Tue, May 26, 2015 at 12:02:22PM +0200, Laszlo Ersek wrote: > On 05/25/15 03:50, lidonglin wrote: > > Hi all: > > > Recentlly, I want to use PXE boot on Xen with OVMF as bios. At > > beginning, I jus