mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
6ef540d50f
Pull DRAM layout configuration code into rcar-common.c instead of having it in multiple copies across board files. This poses no change for Salvator-X/XS, ULCB and Ebisu boards, however it adds a bit of extra code for Draak and Eagle boards, which now gain the capability of being passed in the DRAM layout by the ATF. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Eugeniu Rosca <roscaeugeniu@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13 lines
239 B
Makefile
13 lines
239 B
Makefile
#
|
|
# board/renesas/eagle/Makefile
|
|
#
|
|
# Copyright (C) 2015 Renesas Electronics Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y := ../rcar-common/gen3-spl.o
|
|
else
|
|
obj-y := eagle.o ../rcar-common/common.o
|
|
endif
|