From bec93e4c4eb70d9c459a1d76b467aa6127afb140 Mon Sep 17 00:00:00 2001 From: Kever Yang Date: Sun, 18 Dec 2022 20:43:38 +0800 Subject: [PATCH] rockchip: Only call binman when TPL available Rockchip platform use TPL to do the DRAM initialize for all the SoCs, if TPL is not available, means no available DRAM init program, and the u-boot-rockchip.bin is not functionable. Signed-off-by: Kever Yang Change-Id: I2299f1eddce5aa7d5fb1a3fb4d8aeaa995b397fa --- arch/arm/dts/rockchip-u-boot.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/dts/rockchip-u-boot.dtsi b/arch/arm/dts/rockchip-u-boot.dtsi index 584f21eb5b..fa094b0039 100644 --- a/arch/arm/dts/rockchip-u-boot.dtsi +++ b/arch/arm/dts/rockchip-u-boot.dtsi @@ -11,7 +11,7 @@ }; }; -#ifdef CONFIG_SPL +#ifdef CONFIG_TPL &binman { simple-bin { filename = "u-boot-rockchip.bin"; -- 2.39.5