[PATCH 22/32] efi: arm: Allow use of the EFI table in the app
Simon Glass
sjg at chromium.org
Mon Feb 3 18:42:15 CET 2025
It isn't worth the hassle of omitting this field for the app, since code
is shared between the payload and the app. Adjust the condition to avoid
a build error in the 'efi' command with the app on ARM.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
arch/arm/include/asm/global_data.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h
index 8d51111f095..6a85fb2e152 100644
--- a/arch/arm/include/asm/global_data.h
+++ b/arch/arm/include/asm/global_data.h
@@ -108,7 +108,7 @@ struct arch_global_data {
#ifdef CONFIG_SMBIOS
ulong smbios_start; /* Start address of SMBIOS table */
#endif
-#ifdef CONFIG_EFI_STUB
+#ifdef CONFIG_EFI
ulong table;
#endif
};
--
2.43.0
More information about the U-Boot
mailing list