[PATCH 1/2] imx8qxp: Do not use CONFIG_XPL_BUILD in device tree

Hendrik Donner hd at os-cillation.de
Fri Mar 14 21:08:31 CET 2025


In c9713c155127 the device tree was moved
from CONFIG_SPL to CONFIG_SPL_BUILD and later to CONFIG_XPL_BUILD, but
the CONFIG_xPL_BUILD defines are never set for device trees, breaking
the build. Move the guards back to CONFIG_SPL.

Fixes: c9713c155127 ("imx8-u-boot: Fix SPL guard option")
Signed-off-by: Hendrik Donner <hd at os-cillation.de>
---
 arch/arm/dts/imx8qxp-u-boot.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/dts/imx8qxp-u-boot.dtsi b/arch/arm/dts/imx8qxp-u-boot.dtsi
index 8058caae9ba..db6a3dedb95 100644
--- a/arch/arm/dts/imx8qxp-u-boot.dtsi
+++ b/arch/arm/dts/imx8qxp-u-boot.dtsi
@@ -10,7 +10,7 @@
 };
 
 &binman {
-#ifdef CONFIG_XPL_BUILD
+#ifdef CONFIG_SPL
 	u-boot-spl-ddr {
 		align = <4>;
 		align-size = <4>;
@@ -120,7 +120,7 @@
 		};
 	};
 
-#ifdef CONFIG_XPL_BUILD
+#ifdef CONFIG_SPL
 	imx-boot {
 		filename = "flash.bin";
 		pad-byte = <0x00>;
-- 
2.43.0



More information about the U-Boot mailing list