[edk2-devel] [Patch v3 0/3] [edk2-platform] Add modules to BoardModulePkg.

2019-05-28 Thread Dong, Eric
V3 change: 1. Fix file path typo. V2 change: 1. Add platform DSC file to enable build for this package. 2. Add BZ link for the related changes. V1 change: Add new package BoardModulePkg in Platform/Intel folder. This folder used to keep the board generic modules, such as Cmos, BiosId. Add Cmos

[edk2-devel] [Patch v3 2/3] [edk2-platform] Platform/Intel: Add Cmos related modules to BoardModulePkg

2019-05-28 Thread Dong, Eric
V3 change: 1. Fix file path typo. V2 change: Add BZ link for this change. V1 change: https://bugzilla.tianocore.org/show_bug.cgi?id=1552 Add Cmos related libraries to BoardModulePkg. Totally two library have been added, one is CmosAccessLib and the other is PlatformCmosAccessLib.

[edk2-devel] [Patch v3 3/3] [edk2-platform] Platform/Intel/BoardModulePkg: Add BiosId Module

2019-05-28 Thread Dong, Eric
V3 change: 1. Fix file path typo. V2 change: Add BZ link for this change. V1 change: https://bugzilla.tianocore.org/show_bug.cgi?id=1851 Add Bios ID library used to read BIOS ID related info. This library exports APIs like below: GetBiosId GetBiosVersionDateTime Signed-off-by: Eric Dong

[edk2-devel] [Patch v3 1/3] [edk2-platform] Maintainers.txt: Add BoardModulePkg in Platform/Intel/ folder.

2019-05-28 Thread Dong, Eric
V3 change: 1. Fix file path typo. V2 change: Add package DSC file to enable package build. V1 change: Add new package BoardModulePkg which used to keep the modules which is generic for all board. Signed-off-by: Eric Dong Cc: Liming Gao Cc: Michael Kubacki Cc: Sai Chaganty Cc: Oram Isaac W

[edk2-devel] [PATCH] Platform/Intel: Add fspapi build parameter

2019-05-28 Thread Chiu, Chasel
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1824 Going forward FSP Dispatch mode will be default in KabylakeOpenBoardPkg and requires fspapi build parameter to switch back to FSP API mode. When --fspapi given to build python script it will set

Re: [edk2-devel] [edk2-platform patch v2] Platform: Update DeveloperBox.dsc to remove unnecessary Network libraries

2019-05-28 Thread Ard Biesheuvel
On Tue, 28 May 2019 at 09:41, Liming Gao wrote: > > Signed-off-by: Liming Gao > Cc: Ard Biesheuvel > --- > Platform/Socionext/DeveloperBox/DeveloperBox.dsc | 5 - > Platform/Socionext/DeveloperBox/DeveloperBox.dsc.inc | 9 - > 2 files changed, 14 deletions(-) > > diff --git

[edk2-devel] [edk2-platform patch v2] Platform: Update DeveloperBox.dsc to remove unnecessary Network libraries

2019-05-28 Thread Liming Gao
Signed-off-by: Liming Gao Cc: Ard Biesheuvel --- Platform/Socionext/DeveloperBox/DeveloperBox.dsc | 5 - Platform/Socionext/DeveloperBox/DeveloperBox.dsc.inc | 9 - 2 files changed, 14 deletions(-) diff --git a/Platform/Socionext/DeveloperBox/DeveloperBox.dsc

Re: [edk2-devel] [PATCH v2 6/7] BaseTools/tools_def CLANG3x ARM AARCH64: force use of C99 standard

2019-05-28 Thread Wang, Jian J
Ard, > -Original Message- > From: Ard Biesheuvel [mailto:ard.biesheu...@linaro.org] > Sent: Tuesday, May 28, 2019 2:11 PM > To: edk2-devel-groups-io ; Gao, Liming > > Cc: Laszlo Ersek ; Wang, Jian J ; > Leif Lindholm ; Kinney, Michael D > > Subject: Re: [edk2-devel] [PATCH v2 6/7]

Re: [edk2-devel] [edk2-platform patch] Platform: Update DeveloperBox.dsc to remove unnecessary Network libraries

2019-05-28 Thread Ard Biesheuvel
On Tue, 28 May 2019 at 09:17, Liming Gao wrote: > > Signed-off-by: Liming Gao > Cc: Ard Biesheuvel > --- > Platform/Socionext/DeveloperBox/DeveloperBox.dsc | 1 + > Platform/Socionext/DeveloperBox/DeveloperBox.dsc.inc | 9 - > 2 files changed, 1 insertion(+), 9 deletions(-) > >

[edk2-devel] [PATCH] BaseTools/Capsule: Tool to Generate Windows Firmware Update Driver

2019-05-28 Thread Eric Jin
https://bugzilla.tianocore.org/show_bug.cgi?id=1837 The tool is designed to generate Windows Firmware Update Drivers, the input is one drivername.cap with related parameters, the output Windows Driver package are composed by drivername.cap, drivername.inf and drivername.cat to update the single

[edk2-devel] [Patch v2 2/3] [edk2-platform] Platform/Intel: Add Cmos related modules to BoardModulePkg

2019-05-28 Thread Dong, Eric
V2 change: Add BZ link for this change. V1 change: https://bugzilla.tianocore.org/show_bug.cgi?id=1552 Add Cmos related libraries to BoardModulePkg. Totally two library have been added, one is CmosAccessLib and the other is PlatformCmosAccessLib. PlatformCmosAccessLib will be used by

[edk2-devel] [Patch v2 0/3] [edk2-platform] Add modules to BoardModulePkg.

2019-05-28 Thread Dong, Eric
V2 change: 1. Add platform DSC file to enable build for this package. 2. Add BZ link for the related changes. V1 change: Add new package BoardModulePkg in Platform/Intel folder. This folder used to keep the board generic modules, such as Cmos, BiosId. Add Cmos and BiosId related modules to

[edk2-devel] [Patch v2 3/3] [edk2-platform] Platform/Intel/BoardModulePkg: Add BiosId Module

2019-05-28 Thread Dong, Eric
V2 Change: Add BZ link for this change. V1 Change: https://bugzilla.tianocore.org/show_bug.cgi?id=1851 Add Bios ID library used to read BIOS ID related info. This library exports APIs like below: GetBiosId GetBiosVersionDateTime Signed-off-by: Eric Dong Cc: Liming Gao Cc: Michael Kubacki

[edk2-devel] [Patch v2 1/3] [edk2-platform] Maintainers.txt: Add BoardModulePkg in Platform/Intel/ folder.

2019-05-28 Thread Dong, Eric
V2 change: Add package DSC file to enable package build. V1 change: Add new package BoardModulePkg which used to keep the modules which is generic for all board. Signed-off-by: Eric Dong Cc: Liming Gao Cc: Michael Kubacki Cc: Sai Chaganty Cc: Oram Isaac W --- Maintainers.txt

Re: [edk2-devel] [Patch 0/3] Move network related components from MdeModulePkg to NetworkPkg

2019-05-28 Thread Ard Biesheuvel
On Tue, 28 May 2019 at 08:46, Ard Biesheuvel wrote: > > On Tue, 28 May 2019 at 04:58, Liming Gao wrote: > > > > Hi, all > > > >I just push this patch set 4542f8b8135f1f1ee5654e25139be9769e139ddd.. > > ec56fa27842835e69a2b89b602866c3d652315eb. > > > >If you find any break issue, please

Re: [edk2-devel] [Patch 0/3] Move network related components from MdeModulePkg to NetworkPkg

2019-05-28 Thread Ard Biesheuvel
On Tue, 28 May 2019 at 04:58, Liming Gao wrote: > > Hi, all > >I just push this patch set 4542f8b8135f1f1ee5654e25139be9769e139ddd.. > ec56fa27842835e69a2b89b602866c3d652315eb. > >If you find any break issue, please let me know. > DeveloperBox.dsc in edk2-platforms no longer builds:

Re: [edk2-devel] [PATCH v2 0/7] update ArmSoftFloatLib to latest upstream version

2019-05-28 Thread Ard Biesheuvel
On Mon, 27 May 2019 at 22:51, Ard Biesheuvel wrote: > > Currently, our move to OpenSSL 1.1.1b is being blocked by an issue in > the ARM software floating point library, which lacks some intrinsics > that the ARM EABI spec defines. > > Since the code was in pretty sorry state, let's fix this by

[edk2-devel] [PATCH V4] BaseTools:Make BaseTools support new rules to generate RAW FFS FILE

2019-05-28 Thread Fan, ZhijuX
BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=1765 If RAW FFS File Rule has no section for its data.For RAW FFS File, directly call GenFfs tool to generate FFS file. Ffs Rule: [Rule.Common.USER_DEFINED.MicroCode] FILE RAW = $(NAMED_GUID) { $(INF_OUTPUT)/$(MODULE_NAME).bin }

Re: [edk2-devel] [PATCH v2 6/7] BaseTools/tools_def CLANG3x ARM AARCH64: force use of C99 standard

2019-05-28 Thread Ard Biesheuvel
On Tue, 28 May 2019 at 02:17, Liming Gao wrote: > > Ard: > Is there any impact with new option? If no behavior change, I am OK for > this patch. Reviewed-by: Liming Gao > We don't rely on anything provided by the C11 standard, so it should not result in a behavior change. I do wonder whether

<    1   2