Re: [edk2] USB question: how change to a different alternate setting of an interface?

2015-06-11 Thread Tian, Feng
Hi, Eric It should be enough to get alternative setting through these two steps you did. Could you let me know whether you saw this debug message " UsbSelectSetting: setting %d selected for interface %d " got printed ? and which values are in the printed message? Thanks Feng -Original Mes

Re: [edk2] [PATCH 2/2] MdeModulePkg Variable: Move VariableLock install into SmmVariableReady().

2015-06-11 Thread Yao, Jiewen
Looks good. Reviewed-by: Yao, Jiewen -Original Message- From: Zeng, Star Sent: Wednesday, June 10, 2015 5:23 PM To: edk2-devel@lists.sourceforge.net Cc: Yao, Jiewen; Ni, Ruiyu Subject: [PATCH 2/2] MdeModulePkg Variable: Move VariableLock install into SmmVariableReady(). VariableLock i

Re: [edk2] USB question: how change to a different alternate setting of an interface?

2015-06-11 Thread Eric Wittmayer
Feng, Thanks for your quick response. I'll turn on the debug printing tomorrow and let you know what I get. Eric > On Jun 11, 2015, at 12:26 AM, Tian, Feng wrote: > > Hi, Eric > > It should be enough to get alternative setting through these two steps you > did. > > Could you let me know

[edk2] [Patch] BaseTools: Generate a FV EXT entry for FV UI name.

2015-06-11 Thread Yingke Liu
This patch also removed a warning message. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yingke Liu --- BaseTools/Source/Python/AutoGen/AutoGen.py | 1 - BaseTools/Source/Python/GenFds/Fv.py | 21 + 2 files changed, 21 insertions(+), 1 deletion

[edk2] [Patch 3/3] UefiCpuPkg/CpuDxe: Get CPU BIST information from Guided HOB

2015-06-11 Thread Jeff Fan
Get CPU BIST information from gEfiSecPlatformInformation2PpiGuid or gEfiSecPlatformInformationPpiGuid Guided HOB and update the CPU healthy status for CPU MP Service. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan CC: Feng Tian --- UefiCpuPkg/CpuDxe/CpuDxe.inf |

[edk2] [Patch 2/3] MdePkg: Include PiCis.h in SecPlatformInformation.h

2015-06-11 Thread Jeff Fan
This file references EFI_PEI_SERVICES but it will be used by CPU MP DXE driver to get CPU BIST information. And PiCis.h could pass build. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan CC: Liming Gao --- MdePkg/Include/Ppi/SecPlatformInformation.h | 4 +++- 1 fi

Re: [edk2] [PATCH 0/4] Add an implementation of EFI_SMART_CARD_READER_PROTOCOL

2015-06-11 Thread Ludovic Rousseau
Hello, 2015-06-11 3:59 GMT+02:00 El-Haj-Mahmoud, Samer : > I agree that the license is an issue. Having GPL or LGPL code in EDK2 risks > implementations that use this code. Even if an implementation choses not to > carry this specific driver in binary format, just having the GPL source in > the

[edk2] [Patch 1/3] MdePkg: Add Sec Platform Information2 PPI

2015-06-11 Thread Jeff Fan
This is a new PPI introduced in PI 1.4 to pass multiple CPU information from SEC phase to PEI/DXE phases. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan CC: Liming Gao --- MdePkg/Include/Ppi/SecPlatformInformation2.h | 85 MdePkg/Mde

[edk2] [Patch 0/3] Add Sec Platform Information2 PPI

2015-06-11 Thread Jeff Fan
PI 1.4 introduced Sec Platform Inforamtion2 PPI to hand-off CPU healthy information from SEC to PEI/DXE phase. This serial patches will: A. Add Sec Platform Inforamtion2 PPI in MdePkg. B. Include PiCis.h in SecPlatformInformation.h, This file references EFI_PEI_SERVICES but it will be used by CP

[edk2] SCT build error

2015-06-11 Thread Meenakshi Aggarwal
Hi All, I am trying to build SCT and facing following error: ": error 7000: Failed to start command C:\Program Files (x86)\Microsoft Visual Studio 12.0\Vc\bin\nmake.exe /no logo tbuild [c:\test\Build\UefiSct\DEBUG_VS2013x86\X64\EdkCompatibilityPkg\Foundation\Efi\Protocol\EfiProtocolL

Re: [edk2] SCT build error

2015-06-11 Thread Scott Duplichan
Meenakshi Aggarwal [mailto:meenakshi.aggar...@freescale.com] wrote: ]Sent: Thursday, June 11, 2015 06:31 AM ]To: edk2-devel@lists.sourceforge.net ]Subject: [edk2] SCT build error ] ]Hi All, ] ] ]I am trying to build SCT and facing following error: ] ]“: error 7000: Failed to start command ]

Re: [edk2] [PATCH 0/4] Add an implementation of EFI_SMART_CARD_READER_PROTOCOL

2015-06-11 Thread Blibbet
> BSD is a GPL compatible licence. > GPL is NOT a BSD compatible licence. Where is the requirement that all OEMs must only include BSD code in their firmware? Why not let Puri.sm or Novena have a downstream UEFI firmware volume that is GPL, will the world end or something? Today, there is some non

[edk2] [Patch 1/2] CorebootModulePkg: Get power management register addresses.

2015-06-11 Thread Guo Dong
This patch will get power management event register address and power management GPE enable register address. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Guo Dong --- CorebootModulePkg/CbSupportPei/CbSupportPei.c | 6 +- CorebootModulePkg/Include/Guid/AcpiBoa

[edk2] [Patch 2/2] CorebootPayloadPkg: Fix "reset -s" issue.

2015-06-11 Thread Guo Dong
This patch will fix reboot issue after issuing shell command "reset -s" from UEFI payload. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Guo Dong --- .../Library/ResetSystemLib/ResetSystemLib.c| 31 -- 1 file changed, 29 insertions(+), 2 dele

[edk2] [Patch 0/2] Fix "reset -s" issue

2015-06-11 Thread Guo Dong
When using coreboot + UEFI payload, sometimes it will be waken up after issuing "reset -s". This patch disable wake up when shut down. Guo Dong (2): CorebootModulePkg: Get power management register addresses. CorebootPayloadPkg: Fix "reset -s" issue. Contributed-under: TianoCore Contribution

Re: [edk2] [patch 3/3] [CryptoPkg] Updates some support header files and wrapper files to support openssl-1.0.2a build, and correct some openssl API usages when handling ASN.1 en/decoding.

2015-06-11 Thread Ard Biesheuvel
On 10 June 2015 at 19:47, Long, Qin wrote: > Lee, I totally agree with you. And ever made some tries years ago, but no > result. :-( > >From OpenSSL community, there also were lots of requests about the supports > >to have smaller fingerprint for those embedded system (e.g. adding more > >MACRO

[edk2] Show image BMP with UEFI

2015-06-11 Thread S . Vieira
Hi everyone. I am trying show a image with UEFI (i see a example in http://uefi.blogspot.com.br/) But does not worked . Can help me Somebody ?! Source code of the example: http://sourceforge.net/p/syslibforuefi/code/HEAD/tree/trunk/Applications/ Thx S.Vieira --

Re: [edk2] [patch 1/3] [CryptoPkg] Remove the old patch file for openssl-0.9.8zf build, and add the patch file for openssl-1.0.2a.

2015-06-11 Thread Ard Biesheuvel
On 10 June 2015 at 19:22, Long, Qin wrote: > Thanks, Ard. > > This is one historical changes, and come from some early user's requests: > they would like to keep the built result / image of this module identical as > possible, whatever any path was used (e.g. aaa/edk2/.../openssl v.s. > bbb/edk

Re: [edk2] [Patch] BaseTools: Generate a FV EXT entry for FV UI name.

2015-06-11 Thread Gao, Liming
Dennis: Two comments are here. 1) Do you update EXT header size filed to include this EXT entry? 2) EXT entry size is recorded in totalsize. How about directly use totalsize in the following code? -Original Message- From: Yingke Liu [mailto:yingke.d@intel.com] Sent: Thursday, June

Re: [edk2] [Patch] PcAtChipsetPkg/PcRtc: Fix a Y2K bug

2015-06-11 Thread Laszlo Ersek
On 06/10/15 06:10, Ruiyu Ni wrote: > The original driver cannot handle the case when system time runs from > 1999/12/31 23:59:59 > to 2000/1/1 0:0:0. > A simple test to set system time to 1999/12/31 23:59:59 can expose this bug. > The patch limits the driver to only support year in 100 range and d

Re: [edk2] "cond" vs. ?

2015-06-11 Thread Gao, Liming
Tim: Got your point. We will update VFR doc to explain it. Thanks Liming From: Tim Lewis [mailto:tim.le...@insyde.com] Sent: Wednesday, June 10, 2015 6:46 PM To: edk2-devel@lists.sourceforge.net Cc: Lawrence Chiu Subject: Re: [edk2] "cond" vs. ? There is already an example in the VFR specificat

Re: [edk2] [patch 1/3] [CryptoPkg] Remove the old patch file for openssl-0.9.8zf build, and add the patch file for openssl-1.0.2a.

2015-06-11 Thread Laszlo Ersek
On 06/11/15 15:50, Ard Biesheuvel wrote: > On 10 June 2015 at 19:22, Long, Qin wrote: >> Thanks, Ard. >> >> This is one historical changes, and come from some early user's requests: >> they would like to keep the built result / image of this module identical as >> possible, whatever any path was

Re: [edk2] Show image BMP with UEFI

2015-06-11 Thread Rod Smith
On 06/11/2015 09:50 AM, S.Vieira wrote: > Hi everyone. > > I am trying show a image with UEFI > > (i see a example in http://uefi.blogspot.com.br/) > > But does not worked . > > Can help me Somebody ?! > > > Source code of the example: > > http://sourceforge.net/p/syslibforuefi/code/HEAD/

Re: [edk2] Show image BMP with UEFI

2015-06-11 Thread Andrew Fish
> On Jun 11, 2015, at 6:50 AM, S.Vieira wrote: > > Hi everyone. > > I am trying show a image with UEFI > > (i see a example in http://uefi.blogspot.com.br/) > > But does not worked . > > Can help me Somebody ?! > The edk2 supports BMP logos on boot: The Logo is a bmp file: https://svn.

Re: [edk2] [Patch] BaseTools: Generate a FV EXT entry for FV UI name.

2015-06-11 Thread Liu, Yingke D
Liming, 1) TotalSize is the EXT header size 2) TotalSize is the whole EXT header size, and it is initianlized with 16 + 4 which is the size of EFI_FIRMWARE_VOLUME_EXT_HEADER. Dennis -Original Message- From: Gao, Liming [mailto:liming@intel.com] Sent: Thursday, June 11, 2015 23:18 T

Re: [edk2] [Patch] BaseTools: Generate a FV EXT entry for FV UI name.

2015-06-11 Thread Gao, Liming
Got it. Reviewed-by: Liming Gao -Original Message- From: Liu, Yingke D [mailto:yingke.d@intel.com] Sent: Friday, June 12, 2015 8:44 AM To: edk2-devel@lists.sourceforge.net Subject: Re: [edk2] [Patch] BaseTools: Generate a FV EXT entry for FV UI name. Liming, 1) TotalSize is the EXT

Re: [edk2] [Patch] PcAtChipsetPkg/PcRtc: Fix a Y2K bug

2015-06-11 Thread Ni, Ruiyu
Laszlo, Yes I can reproduce this build failure. I did build without the expression comments but didn't do that again after adding the expression comments in DEC. I thought it was only comments and not checked by tool. We are working on patch to fix the build failure. Thanks, Ray > -Original

[edk2] [Basetool][Upt][patch]Update help message of UPT

2015-06-11 Thread Chen, Hesheng
Hello Larry and all, Could you help review this patch? Thank you [Description] Update help message of UPT to remove Intel(R) from the string. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hess Chen mailto:hesheng.c...@intel.com> > Best Regards, Chen, Hess Intel China S

[edk2] [Patch] PcAtChipsetPkg: Fix PCD expression build failure

2015-06-11 Thread Ruiyu Ni
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni Cc: Liming Gao --- PcAtChipsetPkg/PcAtChipsetPkg.dec | 7 ++- PcAtChipsetPkg/PcAtChipsetPkg.uni | Bin 24384 -> 24586 bytes 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/PcAtChipsetPkg/PcAtChips

Re: [edk2] [Patch] PcAtChipsetPkg: Fix PCD expression build failure

2015-06-11 Thread Gao, Liming
Reviewed-by: Liming Gao -Original Message- From: Ni, Ruiyu Sent: Friday, June 12, 2015 9:34 AM To: edk2-devel@lists.sourceforge.net Cc: Ni, Ruiyu; Gao, Liming Subject: [Patch] PcAtChipsetPkg: Fix PCD expression build failure Contributed-under: TianoCore Contribution Agreement 1.0 Signed

[edk2] Build Tool Changes

2015-06-11 Thread Tim Lewis
Would someone care to document the recent changes surrounding the VFR and UNI offsets encoded as a binary? I don't think I've seen this discussed anywhere. It seems to me that a better course of action would have been to solve the problem with linking the resources in the method defined in the U

[edk2] FV FvName in FV Ext Entry

2015-06-11 Thread Tim Lewis
Would someone care to document the changes that were made to add the FV Name to the FV volume header? It would be helpful for other folks to know what Intel is planning here, and how it fits in with the overall scheme. Also, how to turn off this feature so that it is not generated. Thanks, Tim

[edk2] [PATCH] MdePkg: Refine the comments for FileHandleIsDirectory.

2015-06-11 Thread Qiu Shumin
Make the function comments of FileHandleIsDirectory in FileHandleLib consistent with instance implementation. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin --- MdePkg/Include/Library/FileHandleLib.h | 4 ++-- MdePkg/Library/UefiFileHandleLib/Uef

Re: [edk2] SCT build error

2015-06-11 Thread Meenakshi Aggarwal
Hi Scott, Following path exist on my computer: "C:\Program Files\Microsoft Visual Studio 12.0\VC\bin\nmake.exe" i.e. without (x86) string. What is the solution? Which file needs to be changed? Thanks Meenakshi -Original Message- From: Scott Duplichan [mailto:sc...@notabs.org] Sent