mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 19:34:35 +00:00
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:
parent
cca660c2bd
commit
c9713c1551
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@
|
|||
};
|
||||
|
||||
&binman {
|
||||
#ifdef CONFIG_SPL
|
||||
#ifdef CONFIG_SPL_BUILD
|
||||
u-boot-spl-ddr {
|
||||
align = <4>;
|
||||
align-size = <4>;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
};
|
||||
|
||||
&binman {
|
||||
#ifdef CONFIG_SPL
|
||||
#ifdef CONFIG_SPL_BUILD
|
||||
u-boot-spl-ddr {
|
||||
align = <4>;
|
||||
align-size = <4>;
|
||||
|
|
Loading…
Add table
Reference in a new issue