Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Andrew Fish
> On Jun 3, 2015, at 11:33 PM, Ard Biesheuvel wrote: > > In any case, I think the consensus is that the EDK2 upstream should > remain a single project if it moves to Git. If anyone disagrees with > this observation but hasn't chimed in yet, please speak up and > motivate your position. Ard, I

[edk2] [PATCH v4 09/10] BaseTools/Tests: Verify supported UTF-8 data is allowed

2015-06-03 Thread Jordan Justen
We test a simple case of UTF-8 with and without the UTF-8 BOM. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen Cc: Yingke D Liu Cc: Michael D Kinney Cc: Laszlo Ersek --- BaseTools/Tests/CheckUnicodeSourceFiles.py | 11 +++ 1 file changed, 11 insert

[edk2] [PATCH v4 08/10] BaseTools/Tests: Verify unsupported UTF-8 data is rejected

2015-06-03 Thread Jordan Justen
Surrogate pair characters can be encoded in UTF-8 files, but they are not valid UCS-2 characters. For example, this python interpreter code: >>> import codecs >>> codecs.encode(u'\ud801', 'utf-8') '\xed\xa0\x81' But, the range of 0xd800 - 0xdfff should be rejected as unicode code points because t

[edk2] [PATCH v4 10/10] OvmfPkg/PlatformDxe: Convert Platform.uni to UTF-8

2015-06-03 Thread Jordan Justen
This command was used to convert the file: iconv -f UTF-16 -t UTF-8 \ -o OvmfPkg/PlatformDxe/Platform.uni \ OvmfPkg/PlatformDxe/Platform.uni Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen Reviewed-by: Laszlo Ersek --- OvmfPkg/PlatformDxe/Platform.

[edk2] [PATCH v4 01/10] BaseTools/Tests: Always add BaseTools source to import path

2015-06-03 Thread Jordan Justen
This allows unit tests to easily include BaseTools python modules. This is very useful for writing unit tests. Actually, previously, we would do this when RunTests.py was executed, so unit tests could easily import BaseTools modules, so long as they were executed via RunTests. This change allows

[edk2] [PATCH v4 07/10] BaseTools/Tests: Verify 32-bit UTF-8 chars are rejected

2015-06-03 Thread Jordan Justen
Since UTF-8 .uni unicode files might contain strings with unicode code points larger than 16-bits, and UEFI only supports UCS-2 characters, we need to make sure that BaseTools rejects these characters in UTF-8 .uni source files. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by

[edk2] [PATCH v4 02/10] BaseTools/EdkLogger: Support unit tests with a SILENT log level

2015-06-03 Thread Jordan Justen
This allows the unit tests to run without the errors logging to the screen. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen Cc: Yingke D Liu --- BaseTools/Source/Python/Common/EdkLogger.py | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff -

[edk2] [PATCH v4 04/10] BaseTools/UniClassObject: Verify valid UCS-2 chars in UTF-16 .uni files

2015-06-03 Thread Jordan Justen
Supplementary Plane characters can exist in UTF-16 files, but they are not valid UCS-2 characters. For example, refer to this python interpreter code: >>> import codecs >>> codecs.encode(u'\U00010300', 'utf-16') '\xff\xfe\x00\xd8\x00\xdf' Therefore the UCS-4 0x00010300 character is encoded as two

[edk2] [PATCH v4 00/10] Support UTF-8 in .uni string files

2015-06-03 Thread Jordan Justen
https://github.com/jljusten/edk2.git utf8-v4 v4: * Reject characters in the range 0xd800 - 0xdfff since they are reserved for UTF-16 Surrogate Pairs. (lersek) * Add more tests to verify the Surrogate Pairs range is rejected, and that UTF-8 BOM is allowed. (lersek) v3: * v2 fixed the USC-

[edk2] [PATCH v4 05/10] BaseTools/Tests: Verify unsupported UTF-16 are rejected

2015-06-03 Thread Jordan Justen
Supplementary Plane characters can exist in UTF-16 files, but they are not valid UCS-2 characters. For example, this python interpreter code: >>> import codecs >>> codecs.encode(u'\U00010300', 'utf-16') '\xff\xfe\x00\xd8\x00\xdf' Therefore the UCS-4 0x00010300 character is encoded as two 16-bit n

[edk2] [PATCH v4 06/10] BaseTools/UniClassObject: Support UTF-8 string data in .uni files

2015-06-03 Thread Jordan Justen
This allows .uni input files to be encoded with UTF-8. Today, we only support UTF-16 encoding. The strings are still converted to UCS-2 data for use in EDK II modules. (This is the only unicode character format supported by UEFI and EDK II.) Although UTF-8 would allow any UCS-4 character to be pr

[edk2] [PATCH v4 03/10] BaseTools/Tests: Add unit test for AutoGen.UniClassObject

2015-06-03 Thread Jordan Justen
This verifies that a UTF-16 data (with BOM) .uni file is successfully read. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen Cc: Yingke D Liu --- BaseTools/Tests/CheckUnicodeSourceFiles.py | 88 ++ BaseTools/Tests/PythonToolsTests.

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Ard Biesheuvel
On 4 June 2015 at 04:41, Andrew Fish wrote: > > On Jun 3, 2015, at 7:03 PM, Jordan Justen wrote: > > > You can commit to svn from git. > git svn rebase > git svn dcommit > git svn info > > > git svn makes svn based development sane, but it is inferior. > > It doesn't really support all gi

[edk2] [patch 3/4] MdeModulePkg/UhciDxe: Update async polling interval to 1ms.

2015-06-03 Thread Tian Feng
Updating the async polling interval from 50ms to 1ms for better performance. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Tian Feng --- MdeModulePkg/Bus/Pci/UhciDxe/Uhci.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdeModulePkg/Bus/Pci/UhciD

[edk2] [patch 4/4] MdeModulePkg/EhciPei: Remove unused macro

2015-06-03 Thread Tian Feng
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Tian Feng --- MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h b/MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h index fa1671b..74

[edk2] [patch 2/4] MdeModulePkg/EhciDxe: Update async polling interval to 1ms.

2015-06-03 Thread Tian Feng
Updating the async polling interval from 50ms to 1ms for better performance. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Tian Feng --- MdeModulePkg/Bus/Pci/EhciDxe/Ehci.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MdeModulePkg/Bus/Pci/Ehc

[edk2] [patch 1/4] MdeModulePkg/XhciDxe: Update async polling interval to 1ms.

2015-06-03 Thread Tian Feng
Updating the async polling interval from 50ms to 1ms for better performance. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Tian Feng --- MdeModulePkg/Bus/Pci/XhciDxe/Xhci.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdeModulePkg/Bus/Pci/XhciD

[edk2] [patch 0/4] EDKII Usb stack async transfer performance tunning

2015-06-03 Thread Tian Feng
Update the value of those async polling interval macros from 50ms to 1ms. Tian Feng (4): MdeModulePkg/XhciDxe: Update async polling interval to 1ms. MdeModulePkg/EhciDxe: Update async polling interval to 1ms. MdeModulePkg/UhciDxe: Update async polling interval to 1ms. MdeModulePkg/EhciPei:

Re: [edk2] [PATCH] ArmVirtPkg: increase memory preallocations to reduce region count

2015-06-03 Thread Ard Biesheuvel
On 3 June 2015 at 19:39, Laszlo Ersek wrote: > On 06/03/15 19:08, Ard Biesheuvel wrote: >> On 3 June 2015 at 19:03, Laszlo Ersek wrote: >>> On 06/03/15 18:14, Ard Biesheuvel wrote: >>> Thanks, pushed as r17554 >>> >>> Congrats to your first (am I right?) SVN commit! >>> >> >> Indeed! >> >>>

Re: [edk2] getsystemtime-- help

2015-06-03 Thread Saiprasad Chavali
Thanks Andrew, will try with “GetPerformanceCounter” and see how this works out. The test bed at present is x86 Sai From: Andrew Fish [mailto:af...@apple.com] Sent: Wednesday, June 03, 2015 9:28 PM To: edk2-devel@lists.sourceforge.net Subject: Re: [edk2] getsystemtime-- help On Jun 3, 2015, at

Re: [edk2] [PATCH] MdePkg:Add UEFI 2.5 PKCS7 Verification Protocol Definition

2015-06-03 Thread Zhang, Chao B
Qin: The patch is OK to me. Reviewed-by: Chao Zhang Thanks & Best regards Chao Zhang -Original Message- From: Long, Qin Sent: Thursday, June 04, 2015 10:48 AM To: Zhang, Chao B; edk2-devel@lists.sourceforge.net Cc: Long, Qin Subject: [PATCH] MdePkg:Add UEFI 2.5 PKCS7 Verificat

Re: [edk2] getsystemtime-- help

2015-06-03 Thread Andrew Fish
> On Jun 3, 2015, at 9:22 PM, Saiprasad Chavali wrote: > > Hi Andrew, > > Trying to measure the elapsed time interval with a call to system time at > different levels. > If you are writing platform code, or you know the platform. https://svn.code.sf.net/p/edk2/code/trunk/edk2/MdePkg/Incl

Re: [edk2] getsystemtime-- help

2015-06-03 Thread Saiprasad Chavali
Hi Andrew, Trying to measure the elapsed time interval with a call to system time at different levels. Thanks Sai From: Andrew Fish [mailto:af...@apple.com] Sent: Wednesday, June 03, 2015 7:51 PM To: edk2-devel@lists.sourceforge.net Subject: Re: [edk2] getsystemtime-- help On Jun 3, 2015, at

[edk2] [Patch] BaseTools: Update GenFds to handle file type Ffs Rule

2015-06-03 Thread Liming Gao
Ffs Rule can specify a file type instead of specific file name. GenFds should search Binary sections of module INF file and output directory of the module to find all matched file with the specific file type. Current GenFds only considers the final output target file. This patch applies the above r

Re: [edk2] getsystemtime-- help

2015-06-03 Thread Andrew Fish
> On Jun 3, 2015, at 7:47 PM, Saiprasad Chavali wrote: > > Hi Andrew, > > Thanks for the comment, is there way we can ping the RTC with the help of > architecture protocol, at higher TPL’s than Callback (or) nothing? > The rules are the rules. What are you trying to do? Thanks, Andrew

[edk2] [PATCH] MdePkg:Add UEFI 2.5 PKCS7 Verification Protocol Definition

2015-06-03 Thread qlong
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Long Qin --- MdePkg/Include/Protocol/Pkcs7Verify.h | 221 ++ MdePkg/MdePkg.dec | 3 + 2 files changed, 224 insertions(+) create mode 100644 MdePkg/Include/Protocol/Pkcs7Ve

Re: [edk2] getsystemtime-- help

2015-06-03 Thread Saiprasad Chavali
Hi Andrew, Thanks for the comment, is there way we can ping the RTC with the help of architecture protocol, at higher TPL's than Callback (or) nothing? Sai From: Andrew Fish [mailto:af...@apple.com] Sent: Wednesday, June 03, 2015 7:40 PM To: edk2-devel@lists.sourceforge.net Subject: Re: [edk2]

Re: [edk2] getsystemtime-- help

2015-06-03 Thread Andrew Fish
> On Jun 3, 2015, at 7:27 PM, Saiprasad Chavali wrote: > > HI, > > Is there a better way to obtain the system time? I tried GetTime and the call > hangs When I raise the TPL level. > Did you violate the TPL rules in the UEFI spec? UEFI 2.5 section 6.1Table 23. TPL Restrictions Time Serv

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Andrew Fish
> On Jun 3, 2015, at 7:03 PM, Jordan Justen wrote: > >> >> You can commit to svn from git. >> git svn rebase >> git svn dcommit >> git svn info > > git svn makes svn based development sane, but it is inferior. > > It doesn't really support all git features. > > It also has a natsy

[edk2] getsystemtime-- help

2015-06-03 Thread Saiprasad Chavali
HI, Is there a better way to obtain the system time? I tried GetTime and the call hangs When I raise the TPL level. Thanks Sai -- ___ edk2-devel mailing list edk2-devel@lists.s

Re: [edk2] NVMe question

2015-06-03 Thread Tian, Feng
Got your point. Ok, I will roll back the change Thanks Feng -Original Message- From: Busch, Keith Sent: Wednesday, June 03, 2015 22:47 To: Tian, Feng; Laszlo Ersek Cc: edk2-devel@lists.sourceforge.net; Anbazhagan, Baraneedharan; qemu devel list Subject: RE: [edk2] NVMe question Sectio

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Jordan Justen
On 2015-06-03 18:17:26, Andrew Fish wrote: > On Jun 3, 2015, at 5:59 PM, Roy Franz wrote: > Honestly if the choice comes down to an EDK2 upstream being git with > 40 submodules, or > a single SVN repository (with a git mirror), I'd rather have the > single SVN repository.

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Jordan Justen
On 2015-06-03 13:00:30, Jordan Justen wrote: > But, even if you try to consider alternatives to submodules for > composing platform trees, things get complicated. > > One idea, is to fork the EDK II master tree, and add submodules for > your platform specific modules. To me this ends up with the w

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Andrew Fish
> On Jun 3, 2015, at 5:59 PM, Roy Franz wrote: > > Honestly if the choice comes down to an EDK2 upstream being git with > 40 submodules, or > a single SVN repository (with a git mirror), I'd rather have the > single SVN repository. > I'd never use SVN, but just use the git mirror. The maintaine

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Roy Franz
On Wed, Jun 3, 2015 at 1:00 PM, Jordan Justen wrote: > On 2015-06-03 12:01:58, Andrew Fish wrote: >> On Jun 3, 2015, at 7:50 AM, Brian J. Johnson wrote: >> > I fully agree with others' reluctance to use git submodules, and the >> > reasons they have expressed: git submodules are a major pain for

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Laszlo Ersek
On 06/03/15 22:00, Jordan Justen wrote: > On 2015-06-03 12:01:58, Andrew Fish wrote: >> On Jun 3, 2015, at 7:50 AM, Brian J. Johnson wrote: >>> I fully agree with others' reluctance to use git submodules, and the >>> reasons they have expressed: git submodules are a major pain for >>> developer

Re: [edk2] [RFC] edk2 support for a new QEMU device - PXB (PCI Expander Device)

2015-06-03 Thread Laszlo Ersek
On 06/03/15 22:34, Marcel Apfelbaum wrote: > On 06/03/2015 01:20 PM, Laszlo Ersek wrote: >> Maybe we can experiment some more; for example we could start by >> you explaining to me how exactly to probe for a root bus's presence >> (you mentioned device 0, but I'll need more than that). > Well, I

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Brian J. Johnson
On 06/03/2015 03:35 PM, Kirkendall, Garrett wrote: > The fact that git only works on a complete repository makes it impossible to > pull a complete EDKII tree, as some sort of external, such that the package > folders go into the root directory as expected by the EDKII build > infrastructure. T

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Kirkendall, Garrett
First, sorry for the long post, maybe this will get me some help discovering what I can do with git , or help somebody else by describing my pain. As a user of EDKII, we are currently trying to determine how we can transition to git for our projects. I am also still relatively new to git so I s

Re: [edk2] ShellPkg: Add pipe support for parse command

2015-06-03 Thread Carsey, Jaben
Reviewed-by: Jaben Carsey Commit 17555 From: Shah, Tapan [mailto:tapands...@hp.com] Sent: Wednesday, June 03, 2015 9:18 AM To: edk2-devel@lists.sourceforge.net; Carsey, Jaben Subject: ShellPkg: Add pipe support for parse command Importance: High Jaben, Can you review the attached diff file w

Re: [edk2] ShellPkg: Handle escape characters properly for parse command

2015-06-03 Thread Carsey, Jaben
Reviewed-by: Jaben Carsey Commit 17556 From: Shah, Tapan [mailto:tapands...@hp.com] Sent: Wednesday, June 03, 2015 9:18 AM To: edk2-devel@lists.sourceforge.net; Carsey, Jaben Subject: ShellPkg: Handle escape characters properly for parse command Importance: High Jaben, Can you review the att

Re: [edk2] [RFC] edk2 support for a new QEMU device - PXB (PCI Expander Device)

2015-06-03 Thread Marcel Apfelbaum
On 06/03/2015 01:20 PM, Laszlo Ersek wrote: > On 06/03/15 10:15, Marcel Apfelbaum wrote: >> On 06/02/2015 07:25 PM, Laszlo Ersek wrote: >>> On 06/02/15 17:04, Marcel Apfelbaum wrote: Hi, The following series: - [Qemu-devel] [PATCH V8 00/17] hw/pc: implement multiple primary

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Jordan Justen
On 2015-06-03 12:01:58, Andrew Fish wrote: > On Jun 3, 2015, at 7:50 AM, Brian J. Johnson wrote: > > I fully agree with others' reluctance to use git submodules, and the > > reasons they have expressed: git submodules are a major pain for > > developers, and the concerns Liming listed above can

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Roy Franz
On Wed, Jun 3, 2015 at 7:50 AM, Brian J. Johnson wrote: > On 06/03/2015 04:50 AM, Gao, Liming wrote: >> Hi, all >> >>Now, EDKII project Git mirror is ready in GitHub (https:// >> github.com/tianocore >> ). There are EDKII project Repo

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Andrew Fish
> On Jun 3, 2015, at 7:50 AM, Brian J. Johnson wrote: > > On 06/03/2015 04:50 AM, Gao, Liming wrote: >> Hi, all >> >> Now, EDKII project Git mirror is ready in GitHub (https:// >> github.com/tianocore >> ). There are EDKII project Re

Re: [edk2] Problem with PiSmmCore Dispatcher.c

2015-06-03 Thread Zachary Bobroff
Yao, Find attached patch file. Also, note that I had my thought process wrong for C99 vs C89 and moved the variable declarations for SmmTypeIndex and AprioriIndex to the top of the function to make the compiler more happy. Let me know if you have any comments/questions. Best Regards, Zach F

Re: [edk2] [PATCH] ArmVirtPkg: increase memory preallocations to reduce region count

2015-06-03 Thread Laszlo Ersek
On 06/03/15 19:08, Ard Biesheuvel wrote: > On 3 June 2015 at 19:03, Laszlo Ersek wrote: >> On 06/03/15 18:14, Ard Biesheuvel wrote: >> >>> Thanks, pushed as r17554 >> >> Congrats to your first (am I right?) SVN commit! >> > > Indeed! > >> A small tip (feel free to ignore it): since for edk2 patc

Re: [edk2] [PATCH] ArmVirtPkg: increase memory preallocations to reduce region count

2015-06-03 Thread Ard Biesheuvel
On 3 June 2015 at 19:03, Laszlo Ersek wrote: > On 06/03/15 18:14, Ard Biesheuvel wrote: > >> Thanks, pushed as r17554 > > Congrats to your first (am I right?) SVN commit! > Indeed! > A small tip (feel free to ignore it): since for edk2 patches, the > tianocore contribution agreement is needed, i

Re: [edk2] [PATCH] ArmVirtPkg: increase memory preallocations to reduce region count

2015-06-03 Thread Laszlo Ersek
On 06/03/15 18:14, Ard Biesheuvel wrote: > Thanks, pushed as r17554 Congrats to your first (am I right?) SVN commit! A small tip (feel free to ignore it): since for edk2 patches, the tianocore contribution agreement is needed, it's useful to set up a commit message template. Something like: [co

[edk2] ShellPkg: Add pipe support for parse command

2015-06-03 Thread Shah, Tapan
Jaben, Can you review the attached diff file with following changes? Thanks, Tapan ShellPkg: Add pipe support for parse command * parse reads data from StdIn when pipe is used and does not require -sfo output stored in a file. (e.g.: fs0:\> ls *.nsh

[edk2] ShellPkg: Handle escape characters properly for parse command

2015-06-03 Thread Shah, Tapan
Jaben, Can you review the attached diff file with following changes? Thanks, Tapan ShellPkg: Handle escape characters properly for parse command * parse command does not remove escape character ^ if used to pass special characters like ^ , " in a quot

Re: [edk2] [PATCH] ArmVirtPkg: increase memory preallocations to reduce region count

2015-06-03 Thread Ard Biesheuvel
On 3 June 2015 at 17:40, Laszlo Ersek wrote: > On 06/03/15 16:49, Ard Biesheuvel wrote: >> This updates the sizes of the preallocated regions so that the number >> of distinct regions that exists is minimal at the time we exit boot >> services. >> >> For a typical run of the ArmVirtQemu platform,

Re: [edk2] [PATCH] ArmVirtPkg: increase memory preallocations to reduce region count

2015-06-03 Thread Laszlo Ersek
On 06/03/15 16:49, Ard Biesheuvel wrote: > This updates the sizes of the preallocated regions so that the number > of distinct regions that exists is minimal at the time we exit boot > services. > > For a typical run of the ArmVirtQemu platform, we get the following > utilization numbers: > > R

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Brian J. Johnson
On 06/03/2015 04:50 AM, Gao, Liming wrote: > Hi, all > >Now, EDKII project Git mirror is ready in GitHub (https:// > github.com/tianocore > ). There are EDKII project Repo and each > package Repo. After migrate EDKII from SVN to GitHub

[edk2] [PATCH] ArmVirtPkg: increase memory preallocations to reduce region count

2015-06-03 Thread Ard Biesheuvel
This updates the sizes of the preallocated regions so that the number of distinct regions that exists is minimal at the time we exit boot services. For a typical run of the ArmVirtQemu platform, we get the following utilization numbers: Reserved : 4 Pages (16,384 Bytes) LoaderCo

Re: [edk2] [RFC] edk2 support for a new QEMU device - PXB (PCI Expander Device)

2015-06-03 Thread Brian J. Johnson
On 06/03/2015 05:20 AM, Laszlo Ersek wrote: > After sleeping on it:), I'd certainly like to find the time to > collaborate on this myself. Maybe we can experiment some more; for > example we could start by you explaining to me how exactly to probe for > a root bus's presence (you mentioned device 0

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Ard Biesheuvel
On 3 June 2015 at 11:50, Gao, Liming wrote: > Hi, all > > Now, EDKII project Git mirror is ready in GitHub > (https://github.com/tianocore). There are EDKII project Repo and each > package Repo. After migrate EDKII from SVN to GitHub, EDKII Git Repo will be > writable, EDKII SVN project will bec

Re: [edk2] Accessing SMBios' System Event Log through GPNV functions

2015-06-03 Thread Tomaz Fogaça
2015-06-02 19:57 GMT-03:00 Andrew Fish : > > On Jun 2, 2015, at 12:47 PM, Andrew Fish wrote: > > > On Jun 2, 2015, at 11:50 AM, Tomaz Fogaça wrote: > > Hello everyone, > > I'm writing this application for UEFI using the UDK and in it I'm trying > to gather some information from the SMBios table.

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Leif Lindholm
On Wed, Jun 03, 2015 at 09:50:27AM +, Gao, Liming wrote: > Hi, all > > Now, EDKII project Git mirror is ready in GitHub > > (https://github.com/tianocore). > There > are EDKII project Repo and each package Repo. After migrate E

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Paolo Bonzini
On 03/06/2015 13:57, Laszlo Ersek wrote: >> > >> > Bisectability would be extremely painful, because bisection on the >> > master repository would leave you at the single huge commit where you >> > atomically update all subpackages. You would have no clue of how to >> > bisect _within_ that ato

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Laszlo Ersek
On 06/03/15 13:34, Paolo Bonzini wrote: > > > On 03/06/2015 13:14, Laszlo Ersek wrote: >> On 06/03/15 11:50, Gao, Liming wrote: >>> Hi, all >>> >>> Now, EDKII project Git mirror is ready in GitHub (https:// >>> github.com/tianocore >>>

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Laszlo Ersek
On 06/03/15 13:14, Laszlo Ersek wrote: > I think there are many more inter-dependencies in edk2 than that. Edk2 > development does not occur *only* along protocol, PPI, and library class > boundaries. Theoretically that might be possible, but it would require > *extreme* discipline in development

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Paolo Bonzini
On 03/06/2015 13:14, Laszlo Ersek wrote: > On 06/03/15 11:50, Gao, Liming wrote: >> Hi, all >> >> Now, EDKII project Git mirror is ready in GitHub (https:// >> github.com/tianocore >> ). There are EDKII project Repo and each >> package

Re: [edk2] Replacement EDK2 email list coming soon

2015-06-03 Thread Laszlo Ersek
On 06/03/15 11:12, Ard Biesheuvel wrote: > On 27 May 2015 at 21:06, Laszlo Ersek wrote: >> On 05/27/15 20:55, Carsey, Jaben wrote: >>> >>> -Original Message- From: Andrew Fish [mailto:af...@apple.com] Sent: Wednesday, May 27, 2015 11:49 AM To: Justen, Jordan L Cc:

Re: [edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Laszlo Ersek
On 06/03/15 11:50, Gao, Liming wrote: > Hi, all > > Now, EDKII project Git mirror is ready in GitHub (https:// > github.com/tianocore > ). There are EDKII project Repo and each > package Repo. After migrate EDKII from SVN to GitHub, EDK

[edk2] [PATCH] MdeModulePkg DxeSmmPerformanceLib: Cover no SMM performance data case.

2015-06-03 Thread Star Zeng
1. Continue to get performance data by Performance Protocol when no SMM performance data found. 2. Not try to get SMM performance data again if no SMM performance handler found. 3. Correct typo 'totol' and 'guage' typo. Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.0 Signed

Re: [edk2] [RFC] edk2 support for a new QEMU device - PXB (PCI Expander Device)

2015-06-03 Thread Laszlo Ersek
On 06/03/15 10:15, Marcel Apfelbaum wrote: > On 06/02/2015 07:25 PM, Laszlo Ersek wrote: >> On 06/02/15 17:04, Marcel Apfelbaum wrote: >>> Hi, >>> >>> The following series: >>> - [Qemu-devel] [PATCH V8 00/17] hw/pc: implement multiple primary >>> busses for pc machines >>> - https://w

[edk2] Proposal of Git Repo Layout for EDKII project

2015-06-03 Thread Gao, Liming
Hi, all Now, EDKII project Git mirror is ready in GitHub (https://github.com/tianocore). There are EDKII project Repo and each package Repo. After migrate EDKII from SVN to GitHub, EDKII Git Repo will be writable, EDKII SVN project wi

Re: [edk2] NVMe question

2015-06-03 Thread Laszlo Ersek
On 06/03/15 02:24, Tian, Feng wrote: > Hi, Laszlo > > Most of us are using MS outlook as mail client. So top-posting is > inevitable per my knowledge. If you know how to avoid top posting, > please let us know. The constructive answer would be http://home.in.tum.de/~jain/software/outlook-quotefi

Re: [edk2] Replacement EDK2 email list coming soon

2015-06-03 Thread Ard Biesheuvel
On 27 May 2015 at 21:06, Laszlo Ersek wrote: > On 05/27/15 20:55, Carsey, Jaben wrote: >> >> >>> -Original Message- >>> From: Andrew Fish [mailto:af...@apple.com] >>> Sent: Wednesday, May 27, 2015 11:49 AM >>> To: Justen, Jordan L >>> Cc: Bruce Cran; edk2-devel@lists.sourceforge.net; Olivi

Re: [edk2] [PATCH] MdePkg: Refine the format of comment in WindowsUxCapsule.h

2015-06-03 Thread Zhang, Chao B
Hi Shumin: The patch is good to me. Thanks for the fix Reviewed-by : Chao Zhang Thanks & Best regards Chao Zhang -Original Message- From: Qiu, Shumin Sent: Wednesday, June 03, 2015 4:48 PM To: edk2-devel@lists.sourceforge.net Cc: Zhang, Chao B Subject: [PATCH] MdePkg: Refine the

[edk2] [PATCH] MdePkg: Refine the format of comment in WindowsUxCapsule.h

2015-06-03 Thread Qiu Shumin
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin --- MdePkg/Include/IndustryStandard/WindowsUxCapsule.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdePkg/Include/IndustryStandard/WindowsUxCapsule.h b/MdePkg/Include/IndustryStandard/Window

Re: [edk2] [RFC] edk2 support for a new QEMU device - PXB (PCI Expander Device)

2015-06-03 Thread Marcel Apfelbaum
On 06/02/2015 07:25 PM, Laszlo Ersek wrote: > On 06/02/15 17:04, Marcel Apfelbaum wrote: >> Hi, >> >> The following series: >> - [Qemu-devel] [PATCH V8 00/17] hw/pc: implement multiple primary >> busses for pc machines >> - https://www.mail-archive.com/qemu-devel@nongnu.org/msg300089.

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

2015-06-03 Thread jiaxinwu
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: jiaxinwu --- MdePkg/Include/Protocol/Dns4.h | 544 MdePkg/Include/Protocol/Dns6.h | 539 +++ MdePkg/Include/Protocol/Http.h | 505