mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-26 12:27:12 +00:00
Add imx8m specific detection part. Which includes checking the EEPROM data for article number options. Signed-off-by: Teresa Remmet <t.remmet@phytec.de> Reviewed-by: Yannic Moog <y.moog@phytec.de> Tested-by: Yannic Moog <y.moog@phytec.de>
11 lines
337 B
Makefile
11 lines
337 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-$(CONFIG_PHYTEC_SOM_DETECTION) += phytec_som_detection.o
|
|
obj-$(CONFIG_PHYTEC_IMX8M_SOM_DETECTION) += imx8m_som_detection.o
|