forked from OERV-BSP/u-boot
Split common board code for R-Car Gen3 and Gen4 into separate files. The R-Car Gen3 board code contains fixups specific to TFA which are no longer required on R-Car Gen4, keep those fixups in its own file so they would not interfere with Gen4. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
14 lines
301 B
Makefile
14 lines
301 B
Makefile
#
|
|
# board/silinux/ek874/Makefile
|
|
#
|
|
# Copyright (C) 2021 Renesas Electronics Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_XPL_BUILD
|
|
obj-y := ../../renesas/rcar-common/gen3-spl.o
|
|
else
|
|
obj-y := ek874.o ../../renesas/rcar-common/gen3-common.o ../../renesas/rcar-common/common.o
|
|
endif
|