From aff7f1314a14ab2af5dbb04a33744c1c4db5aef7 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Mon, 18 Aug 2025 10:51:19 -0600 Subject: [PATCH] boot: Add LEGACY_IMAGE_FORMAT to DISTRO_DEFAULTS At this time there are still major Linux distributions which by default boot using LEGACY_IMAGE_FORMAT type scripts. Add this option to DISTRO_DEFAULTS to ensure these platforms can still boot. Fixes: d780965927d4 ("Drop the special am335x_boneblack_vboot target") Reported-by: Sascha Silbe Tested-By: Sascha Silbe Signed-off-by: Tom Rini --- boot/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/boot/Kconfig b/boot/Kconfig index 2993cd7f9ba..124f6db3e6e 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -1162,6 +1162,7 @@ config DISTRO_DEFAULTS select CMD_SYSBOOT select HUSH_PARSER select SYS_LONGHELP + select LEGACY_IMAGE_FORMAT help Note: These scripts have been replaced by Standard Boot. Do not use them on new boards. See 'Migrating from distro_boot' at -- 2.47.3