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>
(cherry picked from commit cf096e7d73)
16 lines
363 B
Makefile
16 lines
363 B
Makefile
#
|
|
# board/renesas/v3hsk/Makefile
|
|
#
|
|
# Copyright (C) 2019 Renesas Electronics Corporation
|
|
# Copyright (C) 2019 Cogent Embedded, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_XPL_BUILD
|
|
obj-y := ../rcar-common/gen3-spl.o
|
|
else
|
|
obj-y := ../rcar-common/v3-common.o ../rcar-common/gen3-common.o ../rcar-common/common.o
|
|
obj-$(CONFIG_SYSRESET) += cpld.o
|
|
endif
|