[Concept,24/24] efi: app: arm: Add various options to the build

Message ID 20250922180116.3088502-25-sjg@u-boot.org
State New
Headers
Series boot: efi: Various improvements to booting with the EFI app |

Commit Message

Simon Glass Sept. 22, 2025, 6:01 p.m. UTC
  From: Simon Glass <sjg@chromium.org>

Enable some options which are useful for development:

- Show function names when logging
- Enable SMBIOS so we can view these tables
- Include kaslrseed support
- Enable commands for hashing images
- Support write on FAT filesystems

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 configs/efi-arm_app64_defconfig | 5 +++++
 1 file changed, 5 insertions(+)
  

Patch

diff --git a/configs/efi-arm_app64_defconfig b/configs/efi-arm_app64_defconfig
index 2bc7a87506d..8defb83f9d4 100644
--- a/configs/efi-arm_app64_defconfig
+++ b/configs/efi-arm_app64_defconfig
@@ -21,9 +21,11 @@  CONFIG_BOOTCOMMAND="bootflow scan -lbp"
 CONFIG_SYS_PBSIZE=532
 CONFIG_SYS_CONSOLE_INFO_QUIET=y
 CONFIG_LOG=y
+CONFIG_LOGF_FUNC=y
 CONFIG_DISPLAY_BOARDINFO_LATE=y
 CONFIG_CYCLIC_MAX_CPU_TIME_US=50000
 CONFIG_BOARD_EARLY_INIT_R=y
+CONFIG_CMD_SMBIOS=y
 CONFIG_CMD_BOOTZ=y
 CONFIG_CMD_MEMINFO=y
 CONFIG_CMD_MEMINFO_MAP=y
@@ -32,6 +34,8 @@  CONFIG_CMD_LSBLK=y
 CONFIG_CMD_CAT=y
 CONFIG_CMD_CACHE=y
 CONFIG_CMD_TIME=y
+CONFIG_CMD_KASLRSEED=y
+CONFIG_CMD_HASH=y
 CONFIG_CMD_EXT4_WRITE=y
 CONFIG_MAC_PARTITION=y
 CONFIG_OF_LIVE=y
@@ -47,4 +51,5 @@  CONFIG_SYSRESET=y
 CONFIG_VIDEO=y
 CONFIG_SYS_WHITE_ON_BLACK=y
 CONFIG_CONSOLE_SCROLL_LINES=5
+CONFIG_FAT_WRITE=y
 CONFIG_CMD_DHRYSTONE=y