mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
d7f72b6830
Add new board based on the Toradex Verdin iMX8M Mini SoM, the MX8Menlo. The board is a compatible replacement for i.MX53 M53Menlo and features USB, multiple UARTs, ethernet, LEDs, SD and eMMC. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Fabio Estevam <festevam@denx.de> Cc: Marcel Ziswiler <marcel.ziswiler@toradex.com> Cc: Max Krummenacher <max.krummenacher@toradex.com> Cc: Peng Fan <peng.fan@nxp.com> Cc: Stefano Babic <sbabic@denx.de>
25 lines
623 B
Makefile
25 lines
623 B
Makefile
#
|
|
# Menlosystems MX8Menlo
|
|
# Copyright (C) 2021-2022 Marek Vasut <marex@denx.de>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y := mx8menlo.o
|
|
|
|
obj-y += ../../toradex/verdin-imx8mm/verdin-imx8mm.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += ../../toradex/verdin-imx8mm/spl.o
|
|
obj-$(CONFIG_IMX8M_LPDDR4) += ../../toradex/verdin-imx8mm/lpddr4_timing.o
|
|
endif
|
|
|
|
# Common for all Toradex modules
|
|
ifeq ($(CONFIG_SPL_BUILD),y)
|
|
# Necessary to create built-in.o
|
|
obj- := __dummy__.o
|
|
else
|
|
obj-$(CONFIG_TDX_CFG_BLOCK) += ../../toradex/common/tdx-cfg-block.o
|
|
obj-y += ../../toradex/common/tdx-common.o
|
|
obj-y += ../../toradex/common/tdx-eeprom.o
|
|
endif
|