aboutsummaryrefslogtreecommitdiff
path: root/board/kontron/sl28/Makefile
diff options
context:
space:
mode:
authorMichael Walle <michael@walle.cc>2020-11-18 17:46:01 +0100
committerTom Rini <trini@konsulko.com>2020-12-04 16:09:06 -0500
commite057760f38465f77ff9b557570f56845011729fe (patch)
treeebe72744bb378016f65f4d9ce9349784aa3971cd /board/kontron/sl28/Makefile
parentea22783f4010ed1599b96f5b7183222bfcc48537 (diff)
downloadu-boot-e057760f38465f77ff9b557570f56845011729fe.zip
u-boot-e057760f38465f77ff9b557570f56845011729fe.tar.gz
u-boot-e057760f38465f77ff9b557570f56845011729fe.tar.bz2
board: sl28: add ATF support (bl31)
Add support to load the bl31 part of the ARM Trusted Firmware by the SPL. Signed-off-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'board/kontron/sl28/Makefile')
-rw-r--r--board/kontron/sl28/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/board/kontron/sl28/Makefile b/board/kontron/sl28/Makefile
index 74d8012..5d220f0 100644
--- a/board/kontron/sl28/Makefile
+++ b/board/kontron/sl28/Makefile
@@ -5,4 +5,8 @@ obj-y += sl28.o cmds.o
endif
obj-y += common.o ddr.o
-obj-$(CONFIG_SPL_BUILD) += spl.o
+
+ifdef CONFIG_SPL_BUILD
+obj-y += spl.o
+obj-$(CONFIG_SPL_ATF) += spl_atf.o
+endif