mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
ed86e4fba1
This patch adds basic support for MediaTek MT7981 SoC. This include the file that will initialize the SoC after boot and its device tree. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
14 lines
429 B
Makefile
14 lines
429 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-y += cpu.o
|
|
obj-$(CONFIG_SPL_BUILD) += spl.o
|
|
|
|
obj-$(CONFIG_MT8512) += mt8512/
|
|
obj-$(CONFIG_TARGET_MT7622) += mt7622/
|
|
obj-$(CONFIG_TARGET_MT7623) += mt7623/
|
|
obj-$(CONFIG_TARGET_MT7629) += mt7629/
|
|
obj-$(CONFIG_TARGET_MT7981) += mt7981/
|
|
obj-$(CONFIG_TARGET_MT7986) += mt7986/
|
|
obj-$(CONFIG_TARGET_MT8183) += mt8183/
|
|
obj-$(CONFIG_TARGET_MT8516) += mt8516/
|
|
obj-$(CONFIG_TARGET_MT8518) += mt8518/
|