diff options
Diffstat (limited to 'board/overo/Makefile')
-rw-r--r-- | board/overo/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/overo/Makefile b/board/overo/Makefile index 910948455b..21890715c7 100644 --- a/board/overo/Makefile +++ b/board/overo/Makefile @@ -5,4 +5,8 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-y := overo.o +ifdef CONFIG_SPL_BUILD +obj-y := spl.o common.o +else +obj-y := overo.o common.o +endif |