mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 14:53:06 +00:00
10c6233696
This patch adds basic support for MediaTek MT7986 SoC. This include the file that will initialize the SoC after boot and its device tree. Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Daniel Golle <daniel@makrotopia.org> Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
13 lines
390 B
Makefile
13 lines
390 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_MT7986) += mt7986/
|
|
obj-$(CONFIG_TARGET_MT8183) += mt8183/
|
|
obj-$(CONFIG_TARGET_MT8516) += mt8516/
|
|
obj-$(CONFIG_TARGET_MT8518) += mt8518/
|