Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/83361?usp=email )
Change subject: payloads/ipxe/kconfig: Fix option name prefix ......................................................................
payloads/ipxe/kconfig: Fix option name prefix
With commit 238ff1e9c7 ("payloads/ipxe: Prefix iPXE options with "IPXE" instead "PXE""), the prefix for iPXE related Kconfig identifiers was unified to "IPXE". So rename the identifier for the TRUST_CMD option as well, which was introduced later.
Change-Id: I918358b859003503526ba7849494bb23f8c893fd Signed-off-by: Felix Singer felixsinger@posteo.net --- M payloads/external/iPXE/Kconfig M payloads/external/iPXE/Makefile 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/61/83361/1
diff --git a/payloads/external/iPXE/Kconfig b/payloads/external/iPXE/Kconfig index 02dce27..ff25d81 100644 --- a/payloads/external/iPXE/Kconfig +++ b/payloads/external/iPXE/Kconfig @@ -108,7 +108,7 @@ 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 91074fe..7ec8126 100644 --- a/payloads/external/iPXE/Makefile +++ b/payloads/external/iPXE/Makefile @@ -52,7 +52,7 @@ 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