mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
ac57e2b013
Add support for MediaTek MT7622 SoC. This include the file that will initialize the SoC after boot and its device tree. Signed-off-by: Sam Shih <sam.shih@mediatek.com> Reviewed-by: Ryder Lee <ryder.lee@mediatek.com>
11 lines
312 B
Makefile
11 lines
312 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_MT8516) += mt8516/
|
|
obj-$(CONFIG_TARGET_MT8518) += mt8518/
|