[edk2-devel] [PATCH] MdePkg/BaseLib: Remove LongJump.c and SetJump.c

2019-04-08 Thread Zhang, Shenglei
MdePkg BaseLib still uses the inline X86 assembly code in C code files.For now, inline SetJump/LongJump() can be removed. https://bugzilla.tianocore.org/show_bug.cgi?id=1163 Cc: Michael D Kinney Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang

[edk2-devel] [PATCH 3/3] BaseTools: Remove ICC tool chain in tools_def.template

2019-04-08 Thread Zhang, Shenglei
There is no Intel compiler test. Suggest to remove ICC tool chain from tools_def.template. https://bugzilla.tianocore.org/show_bug.cgi?id=1666 Cc: Bob Feng Cc: Liming Gao Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang --- BaseTools/Conf/

[edk2-devel] [PATCH] BaseTools/GenBiosId: Add a new tool GenBiosId

2019-05-27 Thread Zhang, Shenglei
GenBiosId is a tool to generate the BIOS ID binary file which uses the data from the configuration file. https://bugzilla.tianocore.org/show_bug.cgi?id=1846 Signed-off-by: Shenglei Zhang --- BaseTools/Source/C/GenBiosId/GenBiosId.c | 627 +++ BaseTools/Source/C/GNUmakefile

Re: [edk2-devel] [PATCH] BaseTools/GenBiosId: Add a new tool GenBiosId

2019-05-30 Thread Zhang, Shenglei
> -Original Message- > From: Kinney, Michael D > Sent: Wednesday, May 29, 2019 12:49 AM > To: devel@edk2.groups.io; Zhang, Shenglei ; > Kinney, Michael D > Subject: RE: [edk2-devel] [PATCH] BaseTools/GenBiosId: Add a new tool > GenBiosId > > Could this tool

[edk2-devel] [PATCH 0/3] BaseTools: Move FCE & FMMT tools to edk2 repo

2019-06-10 Thread Zhang, Shenglei
REF:FMMT(https://bugzilla.tianocore.org/show_bug.cgi?id=1847) FCE(https://bugzilla.tianocore.org/show_bug.cgi?id=1848) Changes are committed in forked repository: https://github.com/shenglei10/edk2/commits/movetool FCE & FMMT tools are in https://firmware.intel.com/develop Intel UEFI tools a

[edk2-devel] [PATCH] BaseTools/GenBiosId: Add a new tool GenBiosId

2019-06-14 Thread Zhang, Shenglei
From: "Fan, Zhiju" GenBiosId is a tool to generate the BIOS ID binary file which uses the data from the configuration file. https://bugzilla.tianocore.org/show_bug.cgi?id=1846 v2:v1 is a tool of C type and v2 is python type. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang --- Base

[edk2-devel] [PATCH] SecurityPkg/DxeDeferImageLoadLib: Remove DxeDeferImageLoadLib

2019-06-19 Thread Zhang, Shenglei
The library DxeDeferImageLoadLib supports UID feature and it is conflicted with the driver SecurityStubDxe (Defer3rdPartyImageLoad.c). And the UID feature is dropped. So it should be removed from SecurityPkg. https://bugzilla.tianocore.org/show_bug.cgi?id=1919 Cc: Chao Zhang Cc: Jiewen Yao Cc: J

[edk2-devel] [edk2-platform patch 4/6] Platform\Tools: Add top level Makefile and GNUMakefile

2019-06-20 Thread Zhang, Shenglei
Add FMMT, BfmLib and FCE into Makefile and GNUMakefile. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang --- Platform/Intel/Tools/GNUmakefile | 30 + Platform/Intel/Tools/Makefile| 33 2 files changed, 63 insertions(+)

[edk2-devel] [edk2-platform patch 6/6] Silicon\Tools: Add top level Makefile and GNUMakefile

2019-06-20 Thread Zhang, Shenglei
Add FitGen into Makefile and GNUMakefile. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang --- Silicon/Intel/Tools/GNUmakefile | 34 + Silicon/Intel/Tools/Makefile| 31 ++ 2 files changed, 65 insertions(+) create mode 10

[edk2-devel] [edk2-platform patch 0/6] Add tools FMMT FCE and FitGen

2019-06-20 Thread Zhang, Shenglei
Add FMMT and FCE into Platform/Intel/Tools. Add FitGen into Silicon/Intel/Tools. https://bugzilla.tianocore.org/show_bug.cgi?id=1847 https://bugzilla.tianocore.org/show_bug.cgi?id=1848 https://bugzilla.tianocore.org/show_bug.cgi?id=1849 Cc: Bob Feng Cc: Liming Gao Shenglei Zhang (6): Platform/

[edk2-devel] [edk2-platform patch 5/6] Silicon\Tools: Add a tool FitGen

2019-06-20 Thread Zhang, Shenglei
The utility of this tool is part of build process for IA32/X64 FD. It generates FIT table. https://bugzilla.tianocore.org/show_bug.cgi?id=1849 Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang --- Silicon/Intel/Tools/FitGen/FitGen.c| 3137 Silicon/Intel/Too

[edk2-devel] [PATCH 1/4] MdeModulePkg: Remove S3Lib.h and PeiS3LibNull

2019-06-20 Thread Zhang, Shenglei
S3Lib.h and PeiS3LibNull have been deprecated since 2009, so remove them. https://bugzilla.tianocore.org/show_bug.cgi?id=1299 Cc: Jian J Wang Cc: Hao A Wu Cc: Ray Ni Cc: Star Zeng Signed-off-by: Shenglei Zhang --- .../Library/PeiS3LibNull/PeiS3LibNull.c | 29 MdeModule

[edk2-devel] [PATCH 3/4] MdeModulePkg: Remove RecoveryLib.h and PeiRecoveryLibNull

2019-06-20 Thread Zhang, Shenglei
RecoveryLib.h and PeiRecoveryLibNull have been deprecated from 2009, so remove them. https://bugzilla.tianocore.org/show_bug.cgi?id=1299 Cc: Jian J Wang Cc: Hao A Wu Cc: Ray Ni Cc: Star Zeng Signed-off-by: Shenglei Zhang -SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ -#include -#includ

[edk2-devel] [PATCH 0/4] Remove S3Lib and RecoveryLib

2019-06-20 Thread Zhang, Shenglei
S3Lib and RecoveryLib have been deprecated since 2009. There is no code using AcpiS3ResumeOs() interface in S3Lib and PeiRecoverFirmware() interface in RecoveryLib. So they can be removed from edk2 repo. Cc: Jian J Wang Cc: Hao A Wu Cc: Ray Ni Cc: Star Zeng Cc: Liming Gao Shenglei Zhang (4):

[edk2-devel] [PATCH 2/4] IntelFrameworkModulePkg: Remove PeiS3Lib

2019-06-20 Thread Zhang, Shenglei
PeiS3Lib has been deprecated since 2009 so remove it. https://bugzilla.tianocore.org/show_bug.cgi?id=1299 Cc: Liming Gao Signed-off-by: Shenglei Zhang --- .../Library/PeiS3Lib/PeiS3Lib.c | 45 --- .../IntelFrameworkModulePkg.dsc | 1 - .../Library/Pe

[edk2-devel] [PATCH 4/4] IntelFrameworkModulePkg: Remove PeiRecoveryLib

2019-06-20 Thread Zhang, Shenglei
PeiRecoveryLib has been deprecated since 2009 so remove it. https://bugzilla.tianocore.org/show_bug.cgi?id=1299 Cc: Liming Gao Signed-off-by: Shenglei Zhang --- .../Library/PeiRecoveryLib/PeiRecoveryLib.c | 44 -- .../IntelFrameworkModulePkg.dsc | 1 - .../Libra

[edk2-devel] [PATCH] Platform/Vlv2TbltDevicePkg: Remove dependency of DxeDeferImageLoadLib

2019-06-25 Thread Zhang, Shenglei
The library DxeDeferImageLoadLib supports UID feature and it is conflicted with the driver SecurityStubDxe. And the UID feature is dropped. So DxeDeferImageLoadLib should be removed. Cc: Zailiang Sun Cc: Yi Qian Signed-off-by: Shenglei Zhang --- Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgGccX

[edk2-devel] [edk2-platform patch v2] Silicon/Tools: Add top level Makefile and GNUMakefile

2019-06-25 Thread Zhang, Shenglei
Add FitGen into Makefile and GNUMakefile. v2: Update the license in GNUmakefile. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang --- Silicon/Intel/Tools/GNUmakefile | 28 Silicon/Intel/Tools/Makefile| 31 +++ 2 files chang

[edk2-devel] [PATCH] SecurityPkg: Remove DxeDeferImageLoadLib in DSC

2019-06-30 Thread Zhang, Shenglei
The current version will cause build fail because DxeDeferImageLoadLib exists in DSC file but it was actually deleted. So it should be remove. https://bugzilla.tianocore.org/show_bug.cgi?id=1919 Cc: Chao Zhang Cc: Jiewen Yao Cc: Jian Wang Signed-off-by: Shenglei Zhang --- SecurityPkg/Security

[edk2-devel] [PATCH] Silicon/Tools: Replace white spaces with tabs in GNUmakefile

2019-07-01 Thread Zhang, Shenglei
The tools can't be complied successfully because of the white spaces in GNUmakefile. So replace them with tabs. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang --- Silicon/Intel/Tools/GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Silicon/Intel/To

[edk2-devel] [PATCH] Platform/Intel:Change the way of getting the env file content

2019-07-01 Thread Zhang, Shenglei
From: "Fan, Zhiju" The env file content can not be retrieved by using the original method, so we change the way to read the content. And we change the env file to original format. This patch is going to fix the issue. Cc: Liming Gao Cc: Bob Feng Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Mich

[edk2-devel] [PATCH 0/3] BaseTools: Change FMMT,BfmLib and FCE script type in PosixLike

2019-07-05 Thread Zhang, Shenglei
The existing scripts are PC type, which cause the tools can't be used conveniently like "FMMT -h" in all directories. So change them to UNIX type to fix this problem. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang Shenglei Zhang (3): BaseTools/FMMT: Change FMMT

[edk2-devel] [PATCH 1/3] BaseTools/FMMT: Change FMMT script type in PosixLike

2019-07-05 Thread Zhang, Shenglei
Change the script type from PC to UNIX. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang --- BaseTools/BinWrappers/PosixLike/FMMT | 58 ++-- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/BaseTools/BinWrappers/PosixLike/FMMT b/BaseTools/BinWra

[edk2-devel] [PATCH 2/3] BaseTools/FMMT: Change BfmLib script type in PosixLike

2019-07-05 Thread Zhang, Shenglei
Change the script type from PC to UNIX. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang --- BaseTools/BinWrappers/PosixLike/BfmLib | 58 +- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/BaseTools/BinWrappers/PosixLike/BfmLib b/BaseTools/BinW

[edk2-devel] [PATCH 3/3] BaseTools/FMMT: Change FCE script type in PosixLike

2019-07-05 Thread Zhang, Shenglei
Change the script type from PC to UNIX. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Shenglei Zhang --- BaseTools/BinWrappers/PosixLike/FCE | 58 ++--- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/BaseTools/BinWrappers/PosixLike/FCE b/BaseTools/BinWrap

[edk2-devel] [RFC] Remove unused tool chain configuration in BaseTools/Conf/tools_def.template

2019-04-15 Thread Zhang, Shenglei
Hi All, There is no Intel compiler test. I suggest to remove ICC tool chain from tools_def.template. After this update, INTEL tool family is not used. So, MdePkg library can be updated to remove it. And also MS ASL is not verified now. I suggest to remove tool chain with ASL tool. They are: VS2

[edk2-devel] [PATCH] BaseTools/tools_def.template: Remove tools chain with ASL tool

2019-04-15 Thread Zhang, Shenglei
Microsoft ASL is not verified now. So remove tool chain with ASL tool. They are: VS2008xASL, VS2008x86xASL, VS2010xASL, VS2010x86xASL, VS2012xASL, VS2012x86xASL, VS2013xASL, VS2013x86xASL, VS2015xASL, VS2015x86xASL and CYGGCCxASL. https://bugzilla.tianocore.org/show_bug.cgi?id=1667 Cc: Bob Feng C

[edk2-devel] [PATCH] BaseTools/tools_def.template: Remove tools chain with ASL tool

2019-04-23 Thread Zhang, Shenglei
Microsoft ASL is not verified now. So remove tool chain with ASL tool. They are: VS2008xASL, VS2008x86xASL, VS2010xASL, VS2010x86xASL, VS2012xASL, VS2012x86xASL, VS2013xASL, VS2013x86xASL, VS2015xASL, VS2015x86xASL and CYGGCCxASL. https://bugzilla.tianocore.org/show_bug.cgi?id=1667 v2:Remove defin

[edk2-devel] [PATCH v2 1/4] OvmfPkg/PlatformBootManagerLib: Remove dependency on Mps.h

2019-04-25 Thread Zhang, Shenglei
Mps.h is included in BdsPlatform.h but not actually used. So remove it. Cc: Jordan Justen Cc: Laszlo Ersek Cc: Ard Biesheuvel Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Laszlo Ersek --- OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform

[edk2-devel] [PATCH v2 2/4] ShellPkg/UefiShellDebug1CommandsLib

2019-04-25 Thread Zhang, Shenglei
With Itanium architecture unsupported, gEfiSalSystemTableGuid and gEfiMpsTableGuid will be no longer used. https://bugzilla.tianocore.org/show_bug.cgi?id=1560 v2:Withdraw the removal of #include and gEfiMpsTableGuid. Cc: Jaben Carsey Cc: Ray Ni Contributed-under: TianoCore Contribution Agre

[edk2-devel] [PATCH v2 0/4] Remove IPF and related code

2019-04-25 Thread Zhang, Shenglei
Itanium arch is not supported any longer. So remove IPF and related code. https://bugzilla.tianocore.org/show_bug.cgi?id=1560 v2: Withdraw the removal of Mps.h and related changes. Cc: Jordan Justen Cc: Laszlo Ersek Cc: Ard Biesheuvel Cc: Jaben Carsey Cc: Ray Ni Cc: Michael D Kinney Cc: Lim

[edk2-devel] [PATCH v2 3/4] ShellPkg/UefiHandleParsingLib: Remove some unused Guids

2019-04-25 Thread Zhang, Shenglei
ExtendedSalBootService.h, ExtendedSalServiceClasses.h and McaInitPmi.h will be deleted. So remove the Guids defined in these Protocols. And also remove strings in uni file. https://bugzilla.tianocore.org/show_bug.cgi?id=1560 Cc: Jaben Carsey Cc: Ray Ni Contributed-under: TianoCore Contribution A

[edk2-devel] [PATCH] MdeModulePkg/DumpDynPcd: Add a new application to dump dynamic PCD settings

2019-05-04 Thread Zhang, Shenglei
This is a shell application to dump dynamic PCD settings. Type DumpDynPcd -?/h/H to get help information. Type DumpDynPcd -v/V to get version information. After test, this application can be run on NT32, OVMF and KabyLake. https://bugzilla.tianocore.org/show_bug.cgi?id=1541 Cc: Jian J Wang Cc: Ha

[edk2-devel] [PATCH] MdeModulePkg/DumpDynPcd: Add application to dump dynamic PCD settings

2019-05-06 Thread Zhang, Shenglei
This is a shell application to dump dynamic PCD settings. Type DumpDynPcd -?/h/H to get help information. Type DumpDynPcd -v/V to get version information. Type DumpDynPcd [PcdName] to get Pcd information. https://bugzilla.tianocore.org/show_bug.cgi?id=1541 v2:1.Add static for global variables.

[edk2-devel] [PATCH v3] MdeModulePkg/DumpDynPcd: Add application to dump dynamic PCD settings

2019-05-06 Thread Zhang, Shenglei
This is a shell application to dump dynamic PCD settings. Type DumpDynPcd -?/h/H to get help information. Type DumpDynPcd -v/V to get version information. Type DumpDynPcd [PcdName] to get Pcd information. https://bugzilla.tianocore.org/show_bug.cgi?id=1541 v2:1.Add static for global variables.

[edk2-devel] [PATCH 1/4] OvmfPkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-14 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. The feature enabling flags in [Defines] section have been updated to use the NetworkPkg's terms, and the value has been overridden with the original default value on this platform. This patch al

[edk2-devel] [PATCH 3/4] ArmVirtPkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-14 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. The feature enabling flags in [Defines] section have been updated to use the NetworkPkg's terms, and the value has been overridden with the original default value on this platform. Cc: Laszlo Er

[edk2-devel] [PATCH 2/4] Nt32Pkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-14 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. The feature enabling flags in [Defines] section have be updated to use the NetworkPkg's terms, and the value have been overridden with the original default value on this platform. Cc: Ruiyu Ni

[edk2-devel] [PATCH 4/4] EmulatorPkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-14 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. The feature enabling flags in [Defines] section have been updated to use the NetworkPkg's terms, and the value has been overridden with the original default value on this platform. Cc: Jordan Ju

[edk2-devel] [PATCH 0/4] Add DSC/FDF include segment files for network stack

2019-05-14 Thread Zhang, Shenglei
There is a patch to remove the redudant IP4 only iSCSI/PXE/TCP drivers from MdeModulePkg, which has been reviewed before edk2-stable201811 tag. And we also have plan to move all network related libraries/modules to NetworkPkg. In order to make these change more smoothly, 2 configuration fragment fi

Re: [edk2-devel] [PATCH 1/4] OvmfPkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
Hi Laszlo: > -Original Message- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of > Laszlo Ersek > Sent: Tuesday, May 14, 2019 9:49 PM > To: devel@edk2.groups.io; Zhang, Shenglei > Cc: Justen, Jordan L ; Ard Biesheuvel > ; Anthony Perard ; >

[edk2-devel] [PATCH] OvmfPkg: Remove duplicated library classes in dxe drivers section in DSC

2019-05-15 Thread Zhang, Shenglei
NetLib,IpIoLib,UdpIoLib and DpcLib already exist in [LibraryClasses]. So the ones in [LibraryClasses.common.DXE_DRIVER] are duplicated, which should be removed. Cc: Jordan Justen Cc: Laszlo Ersek Cc: Ard Biesheuvel Cc: Anthony Perard Cc: Julien Grall Signed-off-by: Shenglei Zhang --- OvmfPk

[edk2-devel] [PATCH edk2-platforms 15/16] Platform/Vlv2TbltDevicePkg: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- .../Intel/Vlv2TbltDevicePkg/PlatformPkg.fdf | 24 +-- .../Vlv2TbltDevicePkg/PlatformPkgConfig.dsc | 6 +++ .../Vlv2TbltDevicePkg/PlatformPkgGcc.f

[edk2-devel] [PATCH edk2-platforms 11/16] Platform/Overdrive1000Board: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- .../Overdrive1000Board/Overdrive1000Board.dsc | 27 +++ .../Overdrive1000Board/Overdrive1000Board.fdf | 16 +-- 2 files changed, 10 in

[edk2-devel] [PATCH edk2-platforms 01/16] Platform/OverdriveBoard: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- .../AMD/OverdriveBoard/OverdriveBoard.dsc | 29 +-- .../AMD/OverdriveBoard/OverdriveBoard.fdf | 23 +-- 2 files changed, 2

[edk2-devel] [PATCH edk2-platforms 09/16] Platform/DeveloperBox: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- .../Socionext/DeveloperBox/DeveloperBox.dsc | 29 +-- .../Socionext/DeveloperBox/DeveloperBox.fdf | 24 ++- 2 files changed, 9

[edk2-devel] [PATCH edk2-platforms 03/16] Hisilicon/D03: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- Platform/Hisilicon/D03/D03.dsc | 26 +++--- Platform/Hisilicon/D03/D03.fdf | 10 +- 2 files changed, 12 insertions(+), 24 deletion

[edk2-devel] [PATCH edk2-platforms 13/16] Platform/SgiPkg: Update FDF to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- Platform/ARM/SgiPkg/SgiPlatform.fdf | 12 +--- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Platform/ARM/SgiPkg/SgiPlatform.fdf b/Platfo

[edk2-devel] [PATCH edk2-platforms 07/16] Hisilicon/HiKey960: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- Platform/Hisilicon/HiKey960/HiKey960.dsc | 25 ++-- Platform/Hisilicon/HiKey960/HiKey960.fdf | 11 +-- 2 files changed, 11 inserti

[edk2-devel] [PATCH edk2-platforms 05/16] Hisilicon/D06: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- Platform/Hisilicon/D06/D06.dsc | 42 -- Platform/Hisilicon/D06/D06.fdf | 27 +- 2 files changed, 11 insert

[edk2-devel] [PATCH edk2-platforms 10/16] Platform/SynQuacerEvalBoard: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- .../SynQuacerEvalBoard/SynQuacerEvalBoard.dsc | 35 +-- .../SynQuacerEvalBoard/SynQuacerEvalBoard.fdf | 21 ++- 2 files changed, 10 in

[edk2-devel] [PATCH edk2-platforms 04/16] Hisilicon/D05: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- Platform/Hisilicon/D05/D05.dsc | 56 +++--- Platform/Hisilicon/D05/D05.fdf | 23 +- 2 files changed, 19 insertions(+),

[edk2-devel] [PATCH edk2-platforms 12/16] Silicon/Armada7k8k: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc | 26 +++ Silicon/Marvell/Armada7k8k/Armada7k8k.fdf | 12 + 2 files changed, 10 inse

[edk2-devel] [PATCH edk2-platforms 00/16] Add Network's include segment files in DSC/FDF

2019-05-15 Thread Zhang, Shenglei
We have plan to move all network related modules/libraries to NetworkPkg. So in order to make these changes happen smoothly, We update platforms' DSC/FDF to use Network's include segment files. Shenglei Zhang (16): Platform/OverdriveBoard: Update DSC/FDF to use NetworkPkg's fragment file.

[edk2-devel] [PATCH edk2-platforms 14/16] Platform/RDKQemu: Update DSC to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- Platform/Comcast/RDKQemu/RDKQemu.dsc | 36 +--- 1 file changed, 11 insertions(+), 25 deletions(-) diff --git a/Platform/Comcast/RDKQemu/R

[edk2-devel] [PATCH edk2-platforms 02/16] Platform/VExpressPkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- .../ArmVExpress-networking.fdf.inc| 12 + Platform/ARM/VExpressPkg/ArmVExpress.dsc.inc | 26 +++ 2 files changed, 10 inse

[edk2-devel] [PATCH edk2-platforms 16/16] Platform/PurleyOpenBoardPkg: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg.And add network related definition in Purley PlatformPkg.dsc. Cc: Michael A Kubacki Cc: Jiewen Yao Signed-off-by: Shenglei Zhang --- .../Include/Dsc/CoreAdvancedDxeInclude.dsc| 26 +--

[edk2-devel] [PATCH edk2-platforms 08/16] Platform/CelloBoard: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- Platform/LeMaker/CelloBoard/CelloBoard.dsc | 28 +++--- Platform/LeMaker/CelloBoard/CelloBoard.fdf | 15 +--- 2 files changed, 9 inser

[edk2-devel] [PATCH edk2-platforms 06/16] Hisilicon/HiKey: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-15 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang --- Platform/Hisilicon/HiKey/HiKey.dsc | 26 ++ Platform/Hisilicon/HiKey/HiKey.fdf | 10 +- 2 files changed, 11 insertions(+), 25

[edk2-devel] [PATCH v2 1/4] OvmfPkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-16 Thread Zhang, Shenglei
From: Fu Siyuan This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. The feature enabling flags in [Defines] section have been updated to use the NetworkPkg's terms, and the value has been overridden with the original default value on this platfo

[edk2-devel] [PATCH v2 2/4] Nt32Pkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-16 Thread Zhang, Shenglei
From: Fu Siyuan This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. The feature enabling flags in [Defines] section have be updated to use the NetworkPkg's terms, and the value have been overridden with the original default value on this platfor

[edk2-devel] [PATCH v2 3/4] ArmVirtPkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-16 Thread Zhang, Shenglei
From: Fu Siyuan This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. The feature enabling flags in [Defines] section have been updated to use the NetworkPkg's terms, and the value has been overridden with the original default value on this platfo

[edk2-devel] [PATCH v2 0/4] Add Network's include segment files in DSC/FDF

2019-05-16 Thread Zhang, Shenglei
We have plan to move all network related modules/libraries to NetworkPkg. So in order to make these changes happen smoothly, We update platforms' DSC/FDF to use Network's include segment files. Fu Siyuan (4): OvmfPkg: Update DSC/FDF to use NetworkPkg's include fragment file. Nt32Pkg: Update DS

[edk2-devel] [PATCH v2 4/4] EmulatorPkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-16 Thread Zhang, Shenglei
From: Fu Siyuan This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. The feature enabling flags in [Defines] section have been updated to use the NetworkPkg's terms, and the value has been overridden with the original default value on this platfo

[edk2-devel] [PATCH edk2-platforms V2 00/16] Add Network's include segment files in DSC/FDF

2019-05-17 Thread Zhang, Shenglei
We have plan to move all network related modules/libraries to NetworkPkg. So in order to make these changes happen smoothly, We update platforms' DSC/FDF to use Network's include segment files. v2:1.Add Contributed-under tag in all patches,based on current edk2/master. 2.Modify changes in part

[edk2-devel] [PATCH edk2-platforms V2 14/16] Platform/RDKQemu: Update DSC to use NetworkPkg's include fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC files to use the include fragment files provided by NetworkPkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/Comcast/RDKQemu/RDKQemu.dsc | 34 1 file

[edk2-devel] [PATCH edk2-platforms V2 06/16] Hisilicon/HiKey: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/Hisilicon/HiKey/HiKey.dsc | 26 ++ Platfo

[edk2-devel] [PATCH edk2-platforms V2 12/16] Silicon/Armada7k8k: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. v2:Remove the definitions from Armada7k8k.dsc.inc to Armada70x0Db.dsc, Armada80x0Db.dsc and Armada80x0McBin.dsc. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shengl

[edk2-devel] [PATCH edk2-platforms V2 08/16] Platform/CelloBoard: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/LeMaker/CelloBoard/CelloBoard.dsc | 28 +++--- Pl

[edk2-devel] [PATCH edk2-platforms V2 10/16] Platform/SynQuacerEvalBoard: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. v2: Change Network.dsc.inc to Network.fdf.inc in SynQuacerEvalBoard.fdf. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang --- .../SynQuacerEvalBoard/SynQu

[edk2-devel] [PATCH edk2-platforms V2 02/16] Platform/VExpressPkg: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. v2: Withdraw the unnecessary changes. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- .../ArmVExpress-networking.fdf.inc

[edk2-devel] [PATCH edk2-platforms V2 04/16] Hisilicon/D05: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. v2: Withdraw unrelated changes. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang --- Platform/Hisilicon/D05/D05.dsc | 59 ++---

[edk2-devel] [PATCH edk2-platforms V2 16/16] Platform/PurleyOpenBoardPkg: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg.And add network related definition in Purley PlatformPkg.dsc. Cc: Michael A Kubacki Cc: Jiewen Yao cc: Shifei A Lu cc: Xiaohu Zhou Contributed-under: TianoCore Contribution Agreement 1.1 Sign

[edk2-devel] [PATCH edk2-platforms V2 09/16] Platform/DeveloperBox: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- .../Socionext/DeveloperBox/DeveloperBox.dsc | 29 +-- ..

[edk2-devel] [PATCH edk2-platforms V2 07/16] Hisilicon/HiKey960: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/Hisilicon/HiKey960/HiKey960.dsc | 25 ++-- Pl

[edk2-devel] [PATCH edk2-platforms V2 01/16] Platform/OverdriveBoard: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. v2: Remove TcpIoLib and HttpLib. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- .../AMD/OverdriveBoard/OverdriveBoard.ds

[edk2-devel] [PATCH edk2-platforms V2 05/16] Hisilicon/D06: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/Hisilicon/D06/D06.dsc | 42 -- Pl

[edk2-devel] [PATCH edk2-platforms V2 11/16] Platform/Overdrive1000Board: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- .../Overdrive1000Board/Overdrive1000Board.dsc | 27 +++ ..

[edk2-devel] [PATCH edk2-platforms V2 13/16] Platform/SgiPkg: Update FDF to use NetworkPkg's include fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform FDF files to use the include fragment files provided by NetworkPkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/ARM/SgiPkg/SgiPlatform.fdf | 12 +--- 1 file changed, 1 inser

[edk2-devel] [PATCH edk2-platforms V2 15/16] Platform/Vlv2TbltDevicePkg: Update DSC/FDF to use NetworkPkg's fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Cc: Zailiang Sun Cc: Yi Qian Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang --- .../Intel/Vlv2TbltDevicePkg/PlatformPkg.fdf | 24 +-- .../Vlv

[edk2-devel] [PATCH edk2-platforms V2 03/16] Hisilicon/D03: Update DSC/FDF to use NetworkPkg's include fragment file.

2019-05-17 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/Hisilicon/D03/D03.dsc | 26 +++--- Platform/H

[edk2-devel] [PATCH edk2-platforms V3 01/18] Platform/OverdriveBoard: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. v2: Remove TcpIoLib and HttpLib. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- .../AMD/OverdriveBoard/OverdriveBoard.dsc | 31 +-- .../AMD/OverdriveBoard/O

[edk2-devel] [PATCH edk2-platforms V3 07/18] Hisilicon/HiKey960: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/Hisilicon/HiKey960/HiKey960.dsc | 25 ++-- Platform/Hisilicon/HiKey960/HiKey960.fdf | 11 +--

[edk2-devel] [PATCH edk2-platforms V3 11/18] Platform/Overdrive1000Board: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- .../Overdrive1000Board/Overdrive1000Board.dsc | 27 +++ .../Overdrive1000Board/Overdrive1000Board.fdf | 16 +--

[edk2-devel] [PATCH edk2-platforms V3 00/18] Add Network's include segment files in DSC/FDF

2019-05-20 Thread Zhang, Shenglei
We have plan to move all network related modules/libraries to NetworkPkg. So in order to make these changes happen smoothly, We update platforms' DSC/FDF to use Network's include segment files. v2:1.Add Contributed-under tag in all patches,based on current edk2/master. 2.Modify changes in part

[edk2-devel] [PATCH edk2-platforms V3 10/18] Platform/SynQuacerEvalBoard: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. v2: Change Network.dsc.inc to Network.fdf.inc in SynQuacerEvalBoard.fdf. Cc: Leif Lindholm Signed-off-by: Shenglei Zhang --- .../SynQuacerEvalBoard/SynQuacerEvalBoard.dsc | 35 +-

[edk2-devel] [PATCH edk2-platforms V3 12/18] Silicon/Armada7k8k: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. v2:Remove the definitions from Armada7k8k.dsc.inc to Armada70x0Db.dsc, Armada80x0Db.dsc and Armada80x0McBin.dsc. Cc: Leif Lindholm Signed-off-by: Shenglei Zhang --- Platform/Marvell/Armad

[edk2-devel] [PATCH edk2-platforms V3 17/18] Platform/MinPlatformPkg: Update DSC to use NetworkPkg DSC.

2019-05-20 Thread Zhang, Shenglei
This patch updates the DSC file to use the include fragment files provided by NetworkPkg. And add network related definition in CoreCommonLib.dsc. Cc: Michael A Kubacki Cc: Jiewen Yao Cc: Shifei A Lu Cc: Xiaohu Zhou Signed-off-by: Shenglei Zhang --- .../MinPlatformPkg/Include/Dsc/CoreCommonL

[edk2-devel] [PATCH edk2-platforms V3 08/18] Platform/CelloBoard: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/LeMaker/CelloBoard/CelloBoard.dsc | 28 +++--- Platform/LeMaker/CelloBoard/CelloBoard.fdf | 15 +-

[edk2-devel] [PATCH edk2-platforms V3 02/18] Platform/VExpressPkg: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. v2: Withdraw the unnecessary changes. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- .../ArmVExpress-networking.fdf.inc| 12 + Platform/ARM/VExpressPkg/ArmV

[edk2-devel] [PATCH edk2-platforms V3 04/18] Hisilicon/D05: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. v2: Withdraw unrelated changes. Cc: Leif Lindholm Signed-off-by: Shenglei Zhang --- Platform/Hisilicon/D05/D05.dsc | 59 ++ Platform/Hisilicon/D05/D05.fdf | 2

[edk2-devel] [PATCH edk2-platforms V3 15/18] Platform/Vlv2TbltDevicePkg: Update DSC/FDF to use NetworkPkg DSC/FDF.

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Cc: Zailiang Sun Cc: Yi Qian Signed-off-by: Shenglei Zhang --- .../Intel/Vlv2TbltDevicePkg/PlatformPkg.fdf | 24 +-- .../Vlv2TbltDevicePkg/PlatformPkgConfig.dsc | 6 +++ .../Vlv

[edk2-devel] [PATCH edk2-platforms V3 06/18] Hisilicon/HiKey: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/Hisilicon/HiKey/HiKey.dsc | 26 ++ Platform/Hisilicon/HiKey/HiKey.fdf | 10 +- 2 files ch

[edk2-devel] [PATCH edk2-platforms V3 13/18] Platform/SgiPkg: Update FDF to use NetworkPkg FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/ARM/SgiPkg/SgiPlatform.fdf | 12 +--- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Platform/ARM/SgiP

[edk2-devel] [PATCH edk2-platforms V3 09/18] Platform/DeveloperBox: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- .../Socionext/DeveloperBox/DeveloperBox.dsc | 29 +-- .../Socionext/DeveloperBox/DeveloperBox.fdf | 24 ++-

[edk2-devel] [PATCH edk2-platforms V3 03/18] Hisilicon/D03: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/Hisilicon/D03/D03.dsc | 26 +++--- Platform/Hisilicon/D03/D03.fdf | 10 +- 2 files changed, 1

[edk2-devel] [PATCH edk2-platforms V3 18/18] Platform/AdvancedFeaturePkg: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. And add network related definition in CoreAdvancedDxeInclude.dsc/fdf. Cc: Michael A Kubacki Cc: Jiewen Yao Cc: Shifei A Lu Cc: Xiaohu Zhou Signed-off-by: Shenglei Zhang --- .../Include/Dsc

[edk2-devel] [PATCH edk2-platforms V3 05/18] Hisilicon/D06: Update DSC/FDF to use NetworkPkg DSC/FDF

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC/FDF files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/Hisilicon/D06/D06.dsc | 42 -- Platform/Hisilicon/D06/D06.fdf | 27 +-

[edk2-devel] [PATCH edk2-platforms V3 16/18] Platform/PurleyOpenBoardPkg: Update DSC to use NetworkPkg DSC

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC files to use the include fragment files provided by NetworkPkg. And add network related definition in Purley PlatformPkg.dsc. v3: Add "!include NetworkPkg/NetworkDefines.dsc.inc" in PlatformPkg.dsc Cc: Michael A Kubacki Cc: Jiewen Yao Cc: Shifei A Lu Cc: Xia

[edk2-devel] [PATCH edk2-platforms V3 14/18] Platform/RDKQemu: Update DSC to use NetworkPkg DSC.

2019-05-20 Thread Zhang, Shenglei
This patch updates the platform DSC files to use the include fragment files provided by NetworkPkg. Signed-off-by: Shenglei Zhang Reviewed-by: Leif Lindholm --- Platform/Comcast/RDKQemu/RDKQemu.dsc | 34 1 file changed, 10 insertions(+), 24 deletions(-) diff --git

<    1   2   3   4   5   >