diff options
author | Fabio Estevam <festevam@denx.de> | 2022-11-11 15:46:42 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2022-11-12 14:13:49 +0100 |
commit | c9713c1551277654626a6cc4b41a391c3741f63f (patch) | |
tree | 2937c66b95e9be21f2b660fb5a8436d3f4a5ff06 | |
parent | cca660c2bd0a7e04df9f7c6db95cd5e08408fa8c (diff) |
imx8-u-boot: Fix SPL guard option
We should guard the SPL nodes against CONFIG_SPL_BUILD to fix
the following build error when the blobs are absent:
binman: Fail open first container file mx8qm-ahab-container.img
Signed-off-by: Fabio Estevam <festevam@denx.de>
-rw-r--r-- | arch/arm/dts/imx8qm-u-boot.dtsi | 2 | ||||
-rw-r--r-- | arch/arm/dts/imx8qxp-u-boot.dtsi | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/dts/imx8qm-u-boot.dtsi b/arch/arm/dts/imx8qm-u-boot.dtsi index 442e64badc3..a3e0af48109 100644 --- a/arch/arm/dts/imx8qm-u-boot.dtsi +++ b/arch/arm/dts/imx8qm-u-boot.dtsi @@ -10,7 +10,7 @@ }; &binman { -#ifdef CONFIG_SPL +#ifdef CONFIG_SPL_BUILD u-boot-spl-ddr { align = <4>; align-size = <4>; diff --git a/arch/arm/dts/imx8qxp-u-boot.dtsi b/arch/arm/dts/imx8qxp-u-boot.dtsi index e8df5bb8bfe..7622c40906f 100644 --- a/arch/arm/dts/imx8qxp-u-boot.dtsi +++ b/arch/arm/dts/imx8qxp-u-boot.dtsi @@ -10,7 +10,7 @@ }; &binman { -#ifdef CONFIG_SPL +#ifdef CONFIG_SPL_BUILD u-boot-spl-ddr { align = <4>; align-size = <4>; |