mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 10:54:37 +00:00

Rename directory board/renesas/rcar-common to board/renesas/common and move files. This allows the build system to use HAVE_VENDOR_COMMON_LIB which automatically includes board/$(VENDOR)/common/Makefile . Create temporarily empty board/renesas/common/Makefile to be extended with actual content later in this series. This is a preparatory patch for board Makefile simplification. No functional change so far. Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
13 lines
246 B
Makefile
13 lines
246 B
Makefile
#
|
|
# board/renesas/condor/Makefile
|
|
#
|
|
# Copyright (C) 2019 Renesas Electronics Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_XPL_BUILD
|
|
obj-y := ../common/gen3-spl.o
|
|
else
|
|
obj-y := ../common/gen3-common.o ../common/common.o
|
|
endif
|