Re: [edk2] [EdkCompatibilityPkg maintainer]

2014-04-07 Thread Gao, Liming
Andrew: The patch is good to me. Reviewed-by: Gao, Liming liming@intel.com Thanks Liming From: Andrew Fish [mailto:af...@apple.com] Sent: Monday, April 07, 2014 2:53 AM To: edk2-devel@lists.sourceforge.net Subject: Re: [edk2] [EdkCompatibilityPkg maintainer]

Re: [edk2] trying to segregate issue if it is with network card uefi driver or uefi network stack or dhcp server

2014-04-07 Thread Li, Ruth
Hi Ritul, Do you have wireshark capture file for the failed DHCP scenario you mentioned below? Thanks, Ruth From: ritul guru (riguru) [mailto:rig...@cisco.com] Sent: Wednesday, April 02, 2014 9:04 PM To: edk2-devel@lists.sourceforge.net; Jordan Justen Subject: [edk2] trying to segregate issue if

Re: [edk2] Read or Write text to File on USB

2014-04-07 Thread Laszlo Ersek
On 04/07/14 20:17, Laszlo Ersek wrote: > On 04/07/14 19:32, Sergey Isakov wrote: >> >> On 07 апр. 2014 г., at 20:45, Laszlo Ersek > > wrote: >> >>> >>> I think that your DXE driver should >>> - register a protocol notification callback for SimpleFileSystem (with >>> gBS->R

Re: [edk2] Read or Write text to File on USB

2014-04-07 Thread Laszlo Ersek
On 04/07/14 19:32, Sergey Isakov wrote: > > On 07 апр. 2014 г., at 20:45, Laszlo Ersek > wrote: > >> >> I think that your DXE driver should >> - register a protocol notification callback for SimpleFileSystem (with >> gBS->RegisterProtocolNotify(), TPL_CALLBACK level), >

Re: [edk2] EmulatorPkg maintainer: Fix for Emulator package hanging in BDS

2014-04-07 Thread Andrew Fish
On Apr 6, 2014, at 7:46 PM, Jordan Justen wrote: > On Sun, Apr 6, 2014 at 2:09 PM, Andrew Fish wrote: >> The emulator driver is missing the DisplayEngineDxe driver and this prevents >> forward progress in the BDS. With this fix you can boot to the shell. >> >> EmulatorPkg: Add missing driver.

Re: [edk2] Read or Write text to File on USB

2014-04-07 Thread Sergey Isakov
On 07 апр. 2014 г., at 20:45, Laszlo Ersek wrote: > > I think that your DXE driver should > - register a protocol notification callback for SimpleFileSystem (with > gBS->RegisterProtocolNotify(), TPL_CALLBACK level), > - in the callback function, locate the handles with the new > SimpleFileSyst

Re: [edk2] Read or Write text to File on USB

2014-04-07 Thread Andrew Fish
On Apr 7, 2014, at 4:55 AM, Itay Sali wrote: > Hi, > > Does anyone have an example of writing text to file on usb storage. > I am using DXE_DRIVER and shell is not relevant. > In general this is a bad/risky thing to do from a driver. In UEFI drivers are designed to be simple and policy cho

Re: [edk2] Read or Write text to File on USB

2014-04-07 Thread Thomas Rognon
Itay, This isn't code, but hopefully it helps... UEFI has a database of handles where protocols are installed on. If there is a USB storage device attached, there will be a handle that has an instance of EFI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on it (there will be more than one handle where thi

Re: [edk2] SF.net SVN: edk2:[15430] trunk/edk2/ArmPlatformPkg/ArmVExpressPkg/ ArmVExpress-FVP-AArch64.dsc

2014-04-07 Thread Olivier Martin
PcdClusterCount is actually not used anymore. I am keeping this PCD for now but I might remove it (I am waiting for ACPI support to know if it can be used). PcdCoreCount is used for stack allocation. If your secondary cores are not parked into the UEFI Firmware then it should be ok (note: that is

Re: [edk2] Read or Write text to File on USB

2014-04-07 Thread Laszlo Ersek
On 04/07/14 13:55, Itay Sali wrote: > > Does anyone have an example of writing text to file on usb storage. > > I am using DXE_DRIVER and shell is not relevant. > > I am trying to figure out how can I get the simple file protocol, then > open the volume and then open the file. > > I would appre

Re: [edk2] SF.net SVN: edk2:[15430] trunk/edk2/ArmPlatformPkg/ArmVExpressPkg/ ArmVExpress-FVP-AArch64.dsc

2014-04-07 Thread Ryan Harkin
I always build a single UEFI binary for Foundation and FVP Base models by defining ARM_FOUNDATION_FVP, so I guess I am now going to have problems when I run on an AEMv8 4+4 model? What would setting cores to 8 and clusters to 2 do to the Foundation model? Would it work OK? On 3 April 2014 21:04

Re: [edk2] [edk2-buildtools] Any interest in adding all PPI/Protocol/GUID values to the build generated Guid.xref

2014-04-07 Thread Laszlo Ersek
On 04/07/14 01:16, Andrew Fish wrote: > I hacked up a prototype and it seems to work. It places a newline in the > Guid.xref between the FFS/INF names, and the other GUIDs. > > Is there any interest to adding this, or turning on a option to generate > this kind of file? Seem like it would be usef

[edk2] EmbeddedPkg Statuscode

2014-04-07 Thread Sivasakthivel Nainar
EmbeddedPkg\Library\PrePiLib\ReportStatusCode.c defines EFI_STATUS_CODE_DATA_MAX_SIZE And the include file \MdeModulePkg\Include\Guid\StatusCodeDataTypeDebug.h also defines that. Is it duplicate definition? The information contained in this message may be confidential and proprietary to Am

Re: [edk2] trying to segregate issue if it is with network card uefi driver or uefi network stack or dhcp server

2014-04-07 Thread ritul guru (riguru)
Does uefi dhcp client requires any specific dhcp request parameters in DHCPREQUEST message? And should dhcp server be configured to offer any specific parameters in DHCPOFFER message in case of uefi dhcp client? Regards, Ritul From: Andrew Fish [mailto:af...@apple.com] Sent: Thursday, April 03,

[edk2] Read or Write text to File on USB

2014-04-07 Thread Itay Sali
Hi, Does anyone have an example of writing text to file on usb storage. I am using DXE_DRIVER and shell is not relevant. I am trying to figure out how can I get the simple file protocol, then open the volume and then open the file. I would appreciate if I can get cookbook for that or detailed e