mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-14 13:57:00 +00:00
Add Kconfig / Makefiles to build rpmh and cmd-db drivers. Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
14 lines
542 B
Makefile
14 lines
542 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Makefile for the U-Boot SOC specific device drivers.
|
|
|
|
obj-$(CONFIG_SOC_AMD_VERSAL2) += soc_amd_versal2.o
|
|
obj-$(CONFIG_SOC_QCOM) += qcom/
|
|
obj-$(CONFIG_SOC_SAMSUNG) += samsung/
|
|
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
|
|
obj-$(CONFIG_SOC_XILINX_VERSAL_NET) += soc_xilinx_versal_net.o
|