From fc9f06de6f7d4dcdf19c2fbfd71303df5dd1b8fa Mon Sep 17 00:00:00 2001 From: Aleksandr Goncharov Date: Fri, 20 Sep 2024 11:56:13 +0300 Subject: NetworkPkg: mark fixed network PCDs 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 Cc: Zachary Clark-williams Signed-off-by: Aleksandr Goncharov --- NetworkPkg/Network.dsc.inc | 2 +- NetworkPkg/NetworkFixedPcds.dsc.inc | 16 ++++++++++++++++ NetworkPkg/NetworkPcds.dsc.inc | 16 ---------------- 3 files changed, 17 insertions(+), 17 deletions(-) create mode 100644 NetworkPkg/NetworkFixedPcds.dsc.inc delete mode 100644 NetworkPkg/NetworkPcds.dsc.inc diff --git a/NetworkPkg/Network.dsc.inc b/NetworkPkg/Network.dsc.inc index 42420866b7..89db8b7d03 100644 --- a/NetworkPkg/Network.dsc.inc +++ b/NetworkPkg/Network.dsc.inc @@ -26,7 +26,7 @@ !endif [PcdsFixedAtBuild] -!include NetworkPkg/NetworkPcds.dsc.inc +!include NetworkPkg/NetworkFixedPcds.dsc.inc [PcdsDynamicDefault] !include NetworkPkg/NetworkDynamicPcds.dsc.inc diff --git a/NetworkPkg/NetworkFixedPcds.dsc.inc b/NetworkPkg/NetworkFixedPcds.dsc.inc new file mode 100644 index 0000000000..08c8e32de8 --- /dev/null +++ b/NetworkPkg/NetworkFixedPcds.dsc.inc @@ -0,0 +1,16 @@ +## @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.
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## + +!if ($(NETWORK_ENABLE) == TRUE) AND ($(NETWORK_ALLOW_HTTP_CONNECTIONS) == TRUE) + gEfiNetworkPkgTokenSpaceGuid.PcdAllowHttpConnections|TRUE +!endif diff --git a/NetworkPkg/NetworkPcds.dsc.inc b/NetworkPkg/NetworkPcds.dsc.inc deleted file mode 100644 index c6299ad6ed..0000000000 --- a/NetworkPkg/NetworkPcds.dsc.inc +++ /dev/null @@ -1,16 +0,0 @@ -## @file -# Network DSC include file for [Pcds*] section of all Architectures. -# -# This file can be included to the [Pcds*] section(s) of a platform DSC file -# by using "!include NetworkPkg/NetworkPcds.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.
-# -# SPDX-License-Identifier: BSD-2-Clause-Patent -# -## - -!if ($(NETWORK_ENABLE) == TRUE) AND ($(NETWORK_ALLOW_HTTP_CONNECTIONS) == TRUE) - gEfiNetworkPkgTokenSpaceGuid.PcdAllowHttpConnections|TRUE -!endif -- cgit v1.2.3