From: Simon Glass Date: Thu, 4 Nov 2021 03:09:05 +0000 (-0600) Subject: efi: Drop the OF_EMBED warning for EFI X-Git-Tag: v2025.01-rc5-pxa1908~1648^2~8 X-Git-Url: http://git.dujemihanovic.xyz/%22http:/www.sics.se/static/git-logo.png?a=commitdiff_plain;h=26e24d626b1477b63d62e81565b79d0c889b4485;p=u-boot.git efi: Drop the OF_EMBED warning for EFI For the EFI app, we must embed the devicetree in the ELF file since that is the only thing that is run by UEFI. Drop the warning to avoid confusion. Signed-off-by: Simon Glass Reviewed-by: Heinrich Schuchardt Signed-off-by: Heinrich Schuchardt --- diff --git a/Makefile b/Makefile index c45da3ad88..bf78009e37 100644 --- a/Makefile +++ b/Makefile @@ -1094,7 +1094,7 @@ endif ifeq ($(CONFIG_DEPRECATED),y) $(warning "You have deprecated configuration options enabled in your .config! Please check your configuration.") endif -ifeq ($(CONFIG_OF_EMBED),y) +ifeq ($(CONFIG_OF_EMBED)$(CONFIG_EFI_APP),y) @echo >&2 "===================== WARNING ======================" @echo >&2 "CONFIG_OF_EMBED is enabled. This option should only" @echo >&2 "be used for debugging purposes. Please use"