mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-31 01:24:12 +02:00
Rename `NetworkPcds` to `NetworkFixedPcds` to avoid confusion with dynamic PCDs. The next patches in the chain will update all references across the codebase to use the new name. Cc: Saloni Kasbekar <saloni.kasbekar@intel.com> Cc: Zachary Clark-williams <zachary.clark-williams@intel.com> Signed-off-by: Aleksandr Goncharov <chat@joursoir.net>
17 lines
611 B
PHP
17 lines
611 B
PHP
## @file
|
|
# Network DSC include file for [PcdsFixed*] section of all Architectures.
|
|
#
|
|
# This file can be included to the [PcdsFixed*] section(s) of a platform DSC file
|
|
# by using "!include NetworkPkg/NetworkFixedPcds.dsc.inc" to specify PCD settings
|
|
# according to the value of flags described in "NetworkDefines.dsc.inc".
|
|
#
|
|
# Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
##
|
|
|
|
!if ($(NETWORK_ENABLE) == TRUE) AND ($(NETWORK_ALLOW_HTTP_CONNECTIONS) == TRUE)
|
|
gEfiNetworkPkgTokenSpaceGuid.PcdAllowHttpConnections|TRUE
|
|
!endif
|