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:

committed by
Stefano Babic

parent
cca660c2bd
commit
c9713c1551
@@ -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>;
|
||||||
|
@@ -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>;
|
||||||
|
Reference in New Issue
Block a user