mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-24 22:24:37 +02:00
UefiPayloadPkg: Include Network modules in UefiPayloadPkg.
Include Network modules in UefiPayloadPkg.dsc and UefiPayloadPkg.fdf Cc: Guo Dong <guo.dong@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Cc: Maurice Ma <maurice.ma@intel.com> Cc: Benjamin You <benjamin.you@intel.com> Cc: Zhiguang Liu <zhiguang.liu@intel.com> Signed-off-by: Sravanthi <k.kavyax.sravanthi@intel.com>
This commit is contained in:
parent
851785ea67
commit
d248516b3a
@ -90,6 +90,7 @@
|
|||||||
|
|
||||||
DEFINE EMU_VARIABLE_ENABLE = TRUE
|
DEFINE EMU_VARIABLE_ENABLE = TRUE
|
||||||
DEFINE DISABLE_RESET_SYSTEM = FALSE
|
DEFINE DISABLE_RESET_SYSTEM = FALSE
|
||||||
|
DEFINE NETWORK_DRIVER_ENABLE = FALSE
|
||||||
|
|
||||||
# Dfine the maximum size of the capsule image without a reset flag that the platform can support.
|
# Dfine the maximum size of the capsule image without a reset flag that the platform can support.
|
||||||
DEFINE MAX_SIZE_NON_POPULATE_CAPSULE = 0xa00000
|
DEFINE MAX_SIZE_NON_POPULATE_CAPSULE = 0xa00000
|
||||||
@ -161,6 +162,11 @@
|
|||||||
CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
|
||||||
SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
|
SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
|
||||||
DxeHobListLib|UefiPayloadPkg/Library/DxeHobListLib/DxeHobListLib.inf
|
DxeHobListLib|UefiPayloadPkg/Library/DxeHobListLib/DxeHobListLib.inf
|
||||||
|
BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
|
||||||
|
TlsLib|CryptoPkg/Library/TlsLib/TlsLib.inf
|
||||||
|
IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
|
||||||
|
OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
|
||||||
|
RngLib|MdePkg/Library/BaseRngLib/BaseRngLib.inf
|
||||||
|
|
||||||
!if $(UNIVERSAL_PAYLOAD) == TRUE
|
!if $(UNIVERSAL_PAYLOAD) == TRUE
|
||||||
HobLib|UefiPayloadPkg/Library/DxeHobLib/DxeHobLib.inf
|
HobLib|UefiPayloadPkg/Library/DxeHobLib/DxeHobLib.inf
|
||||||
@ -355,6 +361,7 @@
|
|||||||
|
|
||||||
gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber|$(MAX_LOGICAL_PROCESSORS)
|
gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber|$(MAX_LOGICAL_PROCESSORS)
|
||||||
gUefiCpuPkgTokenSpaceGuid.PcdCpuNumberOfReservedVariableMtrrs|0
|
gUefiCpuPkgTokenSpaceGuid.PcdCpuNumberOfReservedVariableMtrrs|0
|
||||||
|
gEfiNetworkPkgTokenSpaceGuid.PcdAllowHttpConnections|TRUE
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
#
|
#
|
||||||
@ -431,6 +438,13 @@
|
|||||||
!endif
|
!endif
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# UEFI network modules
|
||||||
|
#
|
||||||
|
!if $(NETWORK_DRIVER_ENABLE) == TRUE
|
||||||
|
!include NetworkPkg/Network.dsc.inc
|
||||||
|
!endif
|
||||||
|
|
||||||
[Components.X64]
|
[Components.X64]
|
||||||
#
|
#
|
||||||
# DXE Core
|
# DXE Core
|
||||||
|
@ -17,8 +17,8 @@ DEFINE FD_SIZE = 0x00850000
|
|||||||
DEFINE NUM_BLOCKS = 0x850
|
DEFINE NUM_BLOCKS = 0x850
|
||||||
!else
|
!else
|
||||||
|
|
||||||
DEFINE FD_SIZE = 0x00410000
|
DEFINE FD_SIZE = 0x00590000
|
||||||
DEFINE NUM_BLOCKS = 0x410
|
DEFINE NUM_BLOCKS = 0x590
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
@ -198,6 +198,13 @@ INF MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf
|
|||||||
#
|
#
|
||||||
INF MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
|
INF MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
|
||||||
|
|
||||||
|
#
|
||||||
|
# UEFI network modules
|
||||||
|
#
|
||||||
|
!if $(NETWORK_DRIVER_ENABLE) == TRUE
|
||||||
|
!include NetworkPkg/Network.fdf.inc
|
||||||
|
!endif
|
||||||
|
|
||||||
#
|
#
|
||||||
# Shell
|
# Shell
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user