Hello Simon, in case dropping CONFIG_LEGACY_IMAGE_FORMAT was not intentional, here's a patch to fix it.
Sascha -- >8 -- From: Sascha Silbe <sascha-...@silbe.org> Date: Sat, 16 Aug 2025 14:31:39 +0200 Subject: [PATCH] am335x_evm: re-enable legacy image format When am335x_boneblack_vboot was rolled into the generic am335x_evm target CONFIG_LEGACY_IMAGE_FORMAT was dropped as a side effect of enabling CONFIG_FIT_SIGNATURE. This breaks distro boot using scripts inside legacy image files (boot.scr). Explicitly re-enable legacy image format so that distro boot support is fully working again. Tested on BeagleBone Black. Fixes: d780965927d4 ("Drop the special am335x_boneblack_vboot target") Signed-off-by: Sascha Silbe <sascha-...@silbe.org> --- configs/am335x_evm_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/am335x_evm_defconfig b/configs/am335x_evm_defconfig index 2b68902edef..9393cced885 100644 --- a/configs/am335x_evm_defconfig +++ b/configs/am335x_evm_defconfig @@ -15,6 +15,7 @@ CONFIG_TIMESTAMP=y CONFIG_FIT_SIGNATURE=y CONFIG_FIT_VERBOSE=y CONFIG_SPL_LOAD_FIT=y +CONFIG_LEGACY_IMAGE_FORMAT=y CONFIG_DISTRO_DEFAULTS=y CONFIG_OF_BOARD_SETUP=y CONFIG_BOOTCOMMAND="run findfdt; run init_console; run finduuid; run distro_bootcmd" -- 2.39.5