diff options
author | Simon Glass <sjg@chromium.org> | 2023-12-19 07:27:19 -0700 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-01-13 18:17:46 +0100 |
commit | 50662260c41704d01a83f3d978a18d70eb799089 (patch) | |
tree | aae44bb492735066d07d518b68db7ff670b641af /configs | |
parent | 5a0970ee8cf4391835d21c59e44a65d54d42377c (diff) | |
download | u-boot-50662260c41704d01a83f3d978a18d70eb799089.tar.gz u-boot-50662260c41704d01a83f3d978a18d70eb799089.tar.bz2 u-boot-50662260c41704d01a83f3d978a18d70eb799089.zip |
efi: Avoid using dm_scan_other()
This function is defined by bootstd so using it precludes using that
feature. Use the board_early_init_r() feature instead.
Nove the affected code into a new file, so that it is clear that
this relates to board init.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/efi-x86_app64_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/efi-x86_app64_defconfig b/configs/efi-x86_app64_defconfig index ceaebc7de4..3d021483dd 100644 --- a/configs/efi-x86_app64_defconfig +++ b/configs/efi-x86_app64_defconfig @@ -18,6 +18,7 @@ CONFIG_BOOTCOMMAND="ext2load scsi 0:3 01000000 /boot/vmlinuz; zboot 01000000" CONFIG_SYS_PBSIZE=532 CONFIG_SYS_CONSOLE_INFO_QUIET=y CONFIG_DISPLAY_BOARDINFO_LATE=y +CONFIG_BOARD_EARLY_INIT_R=y CONFIG_HUSH_PARSER=y CONFIG_CMD_BOOTZ=y CONFIG_CMD_PART=y |