mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-20 21:31:32 +02:00
Wadim Egorov <w.egorov@phytec.de> says: Changes in v2: - Reabse to current next - Add Tested-by: John Ma <jma@phytec.com> - Add Kconfig option to select RAM size statically - Make board/phytec/common/k3 always compile for CONFIG_ARCH_K3 v1: https://lists.denx.de/pipermail/u-boot/2024-May/553057.html
13 lines
371 B
Makefile
13 lines
371 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
# Copyright (C) 2023 PHYTEC Messtechnik GmbH
|
|
# Author: Teresa Remmet <t.remmet@phytec.de>
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
# necessary to create built-in.o
|
|
obj- := __dummy__.o
|
|
endif
|
|
|
|
obj-y += phytec_som_detection.o phytec_som_detection_blocks.o
|
|
obj-$(CONFIG_ARCH_K3) += am6_som_detection.o k3/
|
|
obj-$(CONFIG_ARCH_IMX8M) += imx8m_som_detection.o
|