diff options
author | Marek Vasut <marek.vasut+renesas@gmail.com> | 2018-04-23 20:24:16 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2018-04-26 13:54:39 +0200 |
commit | bb6d2ff2ac96a6b3d83f7f65483a2f8087d1f902 (patch) | |
tree | 1470f84e27f7facce8ab686644696f10c0a41ed1 /board/renesas/alt/Makefile | |
parent | 49aefe300a6f52e49eeb66c9edbc45b688518fdd (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/Makefile | 6 |
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 |