Re: [edk2] have any of you guys ever worked with option roms?

2014-02-10 Thread John Davis
Hello Brian, Right now, not many. I want to build a .fd from a set of option roms. I believe I can use ovmfpkg\csm\cs16\csm16.inf for the mode of my option roms and I can include these in my emulator. I know the emulator can't use them, but is there anyway I can see if they are present and loade

Re: [edk2] have any of you guys ever worked with option roms?

2014-02-10 Thread Richardson, Brian
Do you have a specific question? We have discussed Option ROMs before on this mailing list. Thanks ... br --- Brian Richardson -- brian.richard...@intel.com -- Twitter: intel_brian From: John Davis [mailto:davi...@gmail.com] Sent: Monday, February 10, 2014 7:25 PM To: edk2-devel@lists.sourceforg

[edk2] have any of you guys ever worked with option roms?

2014-02-10 Thread John Davis
If so and you want to chat, I would be extremely happy to talk to you. -- John F. Davis 6 Kandes Court Durham, NC 27713 919-888-8358 独树一帜 -- Android apps run on BlackBerry 10 Introducing the new BlackBerry 10.2.1 Runtime

Re: [edk2] Bug in TerminalDxe UnicodeFiFoRemoveOneKey() function

2014-02-10 Thread Li, Elvin
Alexei, The fix is checked into edk2 revision 15216, which removed obsolete code and updated the function's return type to VOID. Please help to confirm. Thanks Elvin -Original Message- From: Gao, Liming [mailto:liming@intel.com] Sent: Saturday, February 08, 2014 9:37

Re: [edk2] InitializeDebugPortDriver() & DebugPortSupported() always return EFI_SUCCESS

2014-02-10 Thread Tian, Feng
Alexei, You are right. Thanks for your comments. Br Feng From: Alexei Fedorov [mailto:alexei.fedo...@arm.com] Sent: Monday, February 10, 2014 19:33 To: edk2-devel@lists.sourceforge.net Subject: [edk2] InitializeDebugPortDriver() & DebugPortSupported() always return EFI_SUCCESS Hi, Please look @t

Re: [edk2] [PATCH] MdeModulePkg/DiskIo: Introduced 'PcdDiskIoDataBufferBlockNum'

2014-02-10 Thread Tian, Feng
Hi, Olivier Could you share me why you need tune this block number? Thanks Feng From: Kinney, Michael D Sent: Tuesday, February 11, 2014 05:22 To: edk2-devel@lists.sourceforge.net; Tian, Feng Subject: RE: [edk2] [PATCH] MdeModulePkg/DiskIo: Introduced 'PcdDiskIoDataBufferBlockNum' Olivier, It

Re: [edk2] Toolchain question...

2014-02-10 Thread Brian J. Johnson
On 02/07/2014 05:51 PM, Bill Paul wrote: > ... > I noticed there's a DDK3790 option which allows you to build just with the > WinDDK compilers directly (e.g. no Visual Studio needed). > > It happens I have an actual CD copy of this kit -- I ordered it from Microsoft > (for free!) some years ago whe

Re: [edk2] [PATCH] MdeModulePkg/DiskIo: Introduced 'PcdDiskIoDataBufferBlockNum'

2014-02-10 Thread Kinney, Michael D
Olivier, It would be better to remove the #define all together and use PcdGet32() instead of the define name. This will allow the PCD to be more flexible and support both FixedAtBuild and PatchableInModule types. Thanks, Mike From: Olivier Martin [mailto:olivier.mar...@arm.com] Sent: Monday,

[edk2] corrections & questions Ch 2 EDK II Build Spec

2014-02-10 Thread John Davis
Corrections: Section 2 - Under the second Note on page 2. - Repeated "The the" Section 2.5.2 - Shouldn't the title be "Firmware Files" or a "Firmware File System Files" In the text beneath it also says are combined into a "Firmware File (FFS)" but if you go back to Figure 1 It shows EFI Section Fi

[edk2] [PATCH] MdeModulePkg/DiskIo: Introduced 'PcdDiskIoDataBufferBlockNum'

2014-02-10 Thread Olivier Martin
Dear MdeModulePkg maintainer, Please find the attached patch that introduced 'PcdDiskIoDataBufferBlockNum'. PcdDiskIoDataBufferBlockNum replaced the hardcoded value into the Disk I/O driver. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin Regards,

Re: [edk2] [PATCH v5 02/19] OvmfPkg/PlatformPei: Add mBootMode driver variable

2014-02-10 Thread Laszlo Ersek
On 02/08/14 00:17, Jordan Justen wrote: > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Jordan Justen > --- > OvmfPkg/PlatformPei/Platform.c | 10 +- > OvmfPkg/PlatformPei/Platform.h | 2 ++ > 2 files changed, 7 insertions(+), 5 deletions(-) > > diff --git a/O

Re: [edk2] EmulatorPkg status and MP support

2014-02-10 Thread Rafael Machado
Hi Andrew. Thanks for the answer. Rafael R. Machado 2014-02-10 13:34 GMT-02:00 Andrew Fish : > There was a question about if the emulator package supports MP Services. > The answer is yes, and you can control the number of APs via PcdEmuAPCount. > EFI runs on the BSP and the APs are the extra p

[edk2] EmulatorPkg status and MP support

2014-02-10 Thread Andrew Fish
There was a question about if the emulator package supports MP Services. The answer is yes, and you can control the number of APs via PcdEmuAPCount. EFI runs on the BSP and the APs are the extra processors in the system. https://svn.code.sf.net/p/edk2/code/trunk/edk2/EmulatorPkg/EmulatorPkg.dsc

[edk2] InitializeDebugPortDriver() & DebugPortSupported() always return EFI_SUCCESS

2014-02-10 Thread Alexei Fedorov
Hi, Please look @the issues below: \edk2\MdeModulePkg\Universal\DebugPortDxe\DebugPort.c, 1) InitializeDebugPortDriver() line #143: ASSERT_EFI_ERROR (Status); return EFI_SUCCESS; This should be ASSERT_EFI_ERROR (Status); return Status; 2) DebugPortSupported() line #244