mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-05 02:51:00 +00:00
5cae28c3b1
Pull common.c into common subdirectory of the board file, since this code can be reused by other Data Modul SBCs. Drop the include of lpddr4_timing.h, which is unneeded. Signed-off-by: Marek Vasut <marex@denx.de>
13 lines
256 B
Makefile
13 lines
256 B
Makefile
#
|
|
# Copyright (C) 2022 Marek Vasut <marex@denx.de>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o lpddr4_timing_2G_32.o lpddr4_timing_4G_32.o
|
|
else
|
|
obj-y += imx8mm_data_modul_edm_sbc.o
|
|
endif
|
|
|
|
obj-y += ../common/common.o
|