mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-03 10:17:21 +00:00

Add support for Data Modul i.MX8M Plus eDM SBC board. This is an evaluation board for various custom display units. Currently supported are serial console, ethernet, eMMC, SD, SPI NOR, USB. Signed-off-by: Marek Vasut <marex@denx.de>
13 lines
234 B
Makefile
13 lines
234 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_4G_32.o
|
|
else
|
|
obj-y += imx8mp_data_modul_edm_sbc.o
|
|
endif
|
|
|
|
obj-y += ../common/common.o
|