blob: 35c817413066d0a6ab733d5e7c376f9ffc40869c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# SPDX-License-Identifier: GPL-2.0+
# Copyright (C) 2023 PHYTEC Messtechnik GmbH
# Author: Teresa Remmet <[email protected]>
ifdef CONFIG_SPL_BUILD
# necessary to create built-in.o
obj- := __dummy__.o
endif
obj-y += phytec_som_detection.o
obj-$(CONFIG_ARCH_IMX8M) += imx8m_som_detection.o
|