summaryrefslogtreecommitdiff
path: root/payloads/external
diff options
context:
space:
mode:
Diffstat (limited to 'payloads/external')
-rw-r--r--payloads/external/Makefile.mk2
-rw-r--r--payloads/external/iPXE/Kconfig2
-rw-r--r--payloads/external/iPXE/Makefile2
3 files changed, 3 insertions, 3 deletions
diff --git a/payloads/external/Makefile.mk b/payloads/external/Makefile.mk
index 73b600b2bb..53693f5917 100644
--- a/payloads/external/Makefile.mk
+++ b/payloads/external/Makefile.mk
@@ -381,7 +381,7 @@ payloads/external/iPXE/ipxe/ipxe.rom ipxe: $(DOTCONFIG) $(IPXE_CONFIG_SCRIPT)
CONFIG_HAS_SCRIPT=$(CONFIG_IPXE_ADD_SCRIPT) \
CONFIG_IPXE_NO_PROMPT=$(CONFIG_IPXE_NO_PROMPT) \
CONFIG_IPXE_HAS_HTTPS=$(CONFIG_IPXE_HAS_HTTPS) \
- CONFIG_PXE_TRUST_CMD=$(CONFIG_PXE_TRUST_CMD)
+ CONFIG_IPXE_TRUST_CMD=$(CONFIG_IPXE_TRUST_CMD)
# LinuxBoot
LINUXBOOT_CROSS_COMPILE_ARCH-$(CONFIG_LINUXBOOT_X86) = x86_32
diff --git a/payloads/external/iPXE/Kconfig b/payloads/external/iPXE/Kconfig
index 02dce27848..ff25d81957 100644
--- a/payloads/external/iPXE/Kconfig
+++ b/payloads/external/iPXE/Kconfig
@@ -108,7 +108,7 @@ config IPXE_HAS_HTTPS
Enable HTTPS protocol, which allows you to encrypt all communication
with a web server and to verify the server's identity
-config PXE_TRUST_CMD
+config IPXE_TRUST_CMD
bool "Enable TRUST commands"
default y
help
diff --git a/payloads/external/iPXE/Makefile b/payloads/external/iPXE/Makefile
index 91074fea99..7ec8126c97 100644
--- a/payloads/external/iPXE/Makefile
+++ b/payloads/external/iPXE/Makefile
@@ -52,7 +52,7 @@ endif
ifeq ($(CONFIG_IPXE_HAS_HTTPS),y)
sed -i'' 's|.*DOWNLOAD_PROTO_HTTPS|#define DOWNLOAD_PROTO_HTTPS|g' "$(project_dir)/src/config/general.h"
endif
-ifeq ($(CONFIG_PXE_TRUST_CMD),y)
+ifeq ($(CONFIG_IPXE_TRUST_CMD),y)
sed -i'' 's|.*IMAGE_TRUST_CMD|#define IMAGE_TRUST_CMD|g' "$(project_dir)/src/config/general.h"
endif