mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
sandbox: Correct SPL condition for building devicetree
With sandbox, CONFIG_SANDBOX is y so the current rule ends up building
the devicetree for only those SPL builds where it is unwanted.
Correct the condition. This allows sandbox_vpl to produce a
u-boot-vpl.dtb file.
Fixes: e7fb789612
("sandbox: Remove OF_HOSTFILE")
Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
61a695e451
commit
0b2e47be2c
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ endif
|
|||
# - we have either OF_SEPARATE or OF_HOSTFILE
|
||||
build_dtb :=
|
||||
ifneq ($(CONFIG_$(SPL_TPL_)OF_REAL),)
|
||||
ifeq ($(CONFIG_OF_SEPARATE)$(CONFIG_SANDBOX),y)
|
||||
ifneq ($(CONFIG_OF_SEPARATE)$(CONFIG_SANDBOX),)
|
||||
build_dtb := y
|
||||
endif
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue