From: Michal Simek Date: Thu, 3 Sep 2020 09:23:39 +0000 (+0200) Subject: spl: Kconfig: Record proper dependency for SPL_ATF X-Git-Tag: v2021.10~497^2~11^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=975bacc16ebe0a334767a84ad0a3e147422d6b71;p=platform%2Fkernel%2Fu-boot.git spl: Kconfig: Record proper dependency for SPL_ATF ATF support was all the time based on FIT image support but this dependency is not recorded anywhere. For !SPL_FIT && SPL_ATF there is compilation error: common/spl/spl.c: In function 'board_init_r': common/spl/spl.c:689:26: error: 'struct spl_image_info' has no member named 'fdt_addr' 689 | spl_fixup_fdt(spl_image.fdt_addr); Signed-off-by: Michal Simek --- diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 6e31d75..807b1dc 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -1271,7 +1271,7 @@ config SPL_YMODEM_SUPPORT config SPL_ATF bool "Support ARM Trusted Firmware" - depends on ARM64 + depends on ARM64 && SPL_FIT help ATF(ARM Trusted Firmware) is a component for ARM AArch64 which is loaded by SPL (which is considered as BL2 in ATF terminology).