Currently, CMD_BOOTx selects both bootm.o and the respective image.o or zimage.o for compilation. After the addition of LIB_BOOTx, the behaviour changes so CMD_BOOTx would not select bootm.o. This leads to build failure on calibri_vf since it unsets BOOTM while still using BOOTZ.
This was added in commit c5954431eb6c ("configs: colibri_vf: disable obscure options") to save size but unsetting BOOTM specifically does not seem to save any space. So the change can be safely reverted Signed-off-by: Anshul Dalal <ansh...@ti.com> --- configs/colibri_vf_defconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/configs/colibri_vf_defconfig b/configs/colibri_vf_defconfig index 3a806243b19..823b4f07460 100644 --- a/configs/colibri_vf_defconfig +++ b/configs/colibri_vf_defconfig @@ -34,7 +34,6 @@ CONFIG_HUSH_PARSER=y # CONFIG_SYS_LONGHELP is not set CONFIG_SYS_PROMPT="Colibri VFxx # " # CONFIG_CMD_BOOTD is not set -# CONFIG_CMD_BOOTM is not set CONFIG_CMD_BOOTZ=y # CONFIG_CMD_ELF is not set # CONFIG_CMD_IMI is not set -- 2.49.0