Message ID | 20241025170700.74440-1-andrew.goodbody@linaro.org |
---|---|
State | Accepted |
Commit | 3df6145db0ed3430a2af089db5a82372bea3f4d5 |
Headers | show |
Series | x86: Missed removal of CMD_BOOTEFI_HELLO_COMPILE | expand |
On Fri, Oct 25, 2024 at 06:07:00PM +0100, Andrew Goodbody wrote: > The config setting CMD_BOOTEFI_HELLO_COMPILE was removed in favour > of BOOTEFI_HELLO_COMPILE but the usage in this Makefile was not > updated. Fix it. > > Fixes: 6fe80876dcc7 ("efi_loader: Rename and move CMD_BOOTEFI_HELLO_COMPILE") > Signed-off-by: Andrew Goodbody <andrew.goodbody@linaro.org> Reviewed-by: Tom Rini <trini@konsulko.com>
On Fri, 25 Oct 2024 18:07:00 +0100, Andrew Goodbody wrote: > The config setting CMD_BOOTEFI_HELLO_COMPILE was removed in favour > of BOOTEFI_HELLO_COMPILE but the usage in this Makefile was not > updated. Fix it. > > Applied to u-boot/master, thanks!
diff --git a/arch/x86/lib/Makefile b/arch/x86/lib/Makefile index 7677c0c352..43e6a1de77 100644 --- a/arch/x86/lib/Makefile +++ b/arch/x86/lib/Makefile @@ -97,7 +97,7 @@ endif else ifndef CONFIG_XPL_BUILD -ifneq ($(CONFIG_CMD_BOOTEFI_SELFTEST)$(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),) +ifneq ($(CONFIG_CMD_BOOTEFI_SELFTEST)$(CONFIG_BOOTEFI_HELLO_COMPILE),) extra-y += $(EFI_CRT0) $(EFI_RELOC) endif endif
The config setting CMD_BOOTEFI_HELLO_COMPILE was removed in favour of BOOTEFI_HELLO_COMPILE but the usage in this Makefile was not updated. Fix it. Fixes: 6fe80876dcc7 ("efi_loader: Rename and move CMD_BOOTEFI_HELLO_COMPILE") Signed-off-by: Andrew Goodbody <andrew.goodbody@linaro.org> --- arch/x86/lib/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)