From: Stefan Roese Date: Fri, 20 Sep 2019 16:09:10 +0000 (+0200) Subject: Kconfig: Set default BUILD_TARGET for ARCH_MX6 with SPL X-Git-Tag: v2020.01-rc1~33^2~64 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4f761dd237a446a89b1deaaf975e9af2c54241b1;p=oweals%2Fu-boot.git Kconfig: Set default BUILD_TARGET for ARCH_MX6 with SPL Use BUILD_TARGET to automatically build "u-boot-with-spl.imx" on MX6 targets with SPL. Signed-off-by: Stefan Roese Cc: Fabio Estevam Cc: Stefano Babic --- diff --git a/Kconfig b/Kconfig index 1f0904f704..66b059f749 100644 --- a/Kconfig +++ b/Kconfig @@ -256,6 +256,7 @@ config BUILD_TARGET ARCH_SUNXI || RISCV) default "u-boot.kwb" if KIRKWOOD default "u-boot-with-spl.bin" if ARCH_AT91 && SPL_NAND_SUPPORT + default "u-boot-with-spl.imx" if ARCH_MX6 && SPL help Some SoCs need special image types (e.g. U-Boot binary with a special header) as build targets. By defining