11 lines
358 B
Makefile
11 lines
358 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Makefile for the U-Boot SOC specific device drivers.
|
|
|
|
obj-$(CONFIG_SOC_TI) += ti/
|
|
obj-$(CONFIG_SOC_DEVICE) += soc-uclass.o
|
|
obj-$(CONFIG_SOC_DEVICE_TI_K3) += soc_ti_k3.o
|
|
obj-$(CONFIG_SANDBOX) += soc_sandbox.o
|
|
obj-$(CONFIG_SOC_XILINX_ZYNQMP) += soc_xilinx_zynqmp.o
|
|
obj-$(CONFIG_SOC_XILINX_VERSAL) += soc_xilinx_versal.o
|