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>
This commit is contained in:
Fabio Estevam 2022-11-11 15:46:42 -03:00 committed by Stefano Babic
parent cca660c2bd
commit c9713c1551
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@
}; };
&binman { &binman {
#ifdef CONFIG_SPL #ifdef CONFIG_SPL_BUILD
u-boot-spl-ddr { u-boot-spl-ddr {
align = <4>; align = <4>;
align-size = <4>; align-size = <4>;

View file

@ -10,7 +10,7 @@
}; };
&binman { &binman {
#ifdef CONFIG_SPL #ifdef CONFIG_SPL_BUILD
u-boot-spl-ddr { u-boot-spl-ddr {
align = <4>; align = <4>;
align-size = <4>; align-size = <4>;