summaryrefslogtreecommitdiff
path: root/board/renesas/alt/Makefile
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut+renesas@gmail.com>2018-04-23 20:24:16 +0200
committerMarek Vasut <marex@denx.de>2018-04-26 13:54:39 +0200
commitbb6d2ff2ac96a6b3d83f7f65483a2f8087d1f902 (patch)
tree1470f84e27f7facce8ab686644696f10c0a41ed1 /board/renesas/alt/Makefile
parent49aefe300a6f52e49eeb66c9edbc45b688518fdd (diff)
ARM: rmobile: Update E2 Alt
The E2 Alt port was broken since some time. This patch updates the E2 Alt port to use modern frameworks, DM, DT probing, SPL for the preloading and puts it on par with the M2 Porter board. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'board/renesas/alt/Makefile')
-rw-r--r--board/renesas/alt/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/board/renesas/alt/Makefile b/board/renesas/alt/Makefile
index 22ab1f43d9..53418699b2 100644
--- a/board/renesas/alt/Makefile
+++ b/board/renesas/alt/Makefile
@@ -6,4 +6,8 @@
# SPDX-License-Identifier: GPL-2.0
#
-obj-y := alt.o qos.o ../rcar-common/common.o
+ifdef CONFIG_SPL_BUILD
+obj-y := alt_spl.o
+else
+obj-y := alt.o qos.o
+endif