From: Johan Gunnarsson Date: Sun, 25 Jul 2021 14:25:58 +0000 (+0200) Subject: rockchip: Fix u-boot-rockchip.bin build X-Git-Tag: v2025.01-rc5-pxa1908~1749^2~6 X-Git-Url: http://git.dujemihanovic.xyz/html/index.html?a=commitdiff_plain;h=475bb949ed191bc00e08781a56a4a1e83fd76242;p=u-boot.git rockchip: Fix u-boot-rockchip.bin build Currently there are a few arm32 rockchip board configs that don't generate u-boot-rockchip.bin when running make because CONFIG_BINMAN is not enabled. This patch changes CONFIG_ARCH_ROCKCHIP to also select CONFIG_BINMAN if CONFIG_SPL and !CONFIG_ARM64. Example builds that don't generate u-boot-rockchip.bin without this patch: export ARCH=arm export CROSS_COMPILE=/usr/bin/arm-linux-gnueabihf- make kylin-rk3036_defconfig make export ARCH=arm export CROSS_COMPILE=/usr/bin/arm-linux-gnueabihf- make rock_defconfig make export ARCH=arm export CROSS_COMPILE=/usr/bin/arm-linux-gnueabihf- make tinker-rk3288_defconfig make Signed-off-by: Johan Gunnarsson Reviewed-by: Simon Glass Reviewed-by: Kever Yang --- diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index e935c60bd7..d692139199 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1801,7 +1801,7 @@ config ARCH_STM32MP config ARCH_ROCKCHIP bool "Support Rockchip SoCs" select BLK - select BINMAN if SPL_OPTEE + select BINMAN if SPL_OPTEE || (SPL && !ARM64) select DM select DM_GPIO select DM_I2C