[U-Boot] [PATCH 5/9] sunxi: allow FIT image for 32-bit builds as well

Alexander Graf agraf at suse.de
Fri Feb 22 08:06:52 UTC 2019



On 21.02.19 02:30, Andre Przywara wrote:
> Even though we introduced FIT image support for the SPL to cover the
> 64-bit SoCs, there is no technical limitation to those parts.
> 
> Change the Makefile stanza to always create a FIT image if the
> particular config either provided a script or an .its file.
> 
> Signed-off-by: Andre Przywara <andre.przywara at arm.com>
> ---
>  Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Makefile b/Makefile
> index d6e7c69f40..3a560e29bf 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1350,7 +1350,7 @@ u-boot-x86-16bit.bin: u-boot FORCE
>  endif
>  
>  ifneq ($(CONFIG_ARCH_SUNXI),)
> -ifeq ($(CONFIG_ARM64),)
> +ifeq ($(CONFIG_SPL_FIT_SOURCE)$(CONFIG_SPL_FIT_GENERATOR),)

The commit message sounds as if this should be an "ifneq"?


Alex

>  u-boot-sunxi-with-spl.bin: spl/sunxi-spl.bin u-boot.img u-boot.dtb FORCE
>  	$(call if_changed,binman)
>  else
> 


More information about the U-Boot mailing list