mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
13e89d7522
Add support for MediaTek MT8518 SoC. This include the file that will initialize the SoC after boot and its device tree. Signed-off-by: mingming lee <mingming.lee@mediatek.com>
9 lines
241 B
Makefile
9 lines
241 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-y += cpu.o
|
|
obj-$(CONFIG_SPL_BUILD) += spl.o
|
|
|
|
obj-$(CONFIG_TARGET_MT7623) += mt7623/
|
|
obj-$(CONFIG_TARGET_MT7629) += mt7629/
|
|
obj-$(CONFIG_TARGET_MT8516) += mt8516/
|
|
obj-$(CONFIG_TARGET_MT8518) += mt8518/
|