mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-03 18:10:13 +00:00
4bc0104c97
This patch adds support for MediaTek MT7621 SoC. All files are dedicated for u-boot. The default build target is u-boot-mt7621.bin. The specification of this chip: https://www.mediatek.com/products/homenetworking/mt7621 Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
14 lines
196 B
Makefile
14 lines
196 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-y += init.o
|
|
obj-y += serial.o
|
|
|
|
ifeq ($(CONFIG_SPL_BUILD),y)
|
|
ifeq ($(CONFIG_TPL_BUILD),y)
|
|
obj-y += tpl/
|
|
else
|
|
obj-y += spl/
|
|
endif
|
|
|
|
obj-y += sram_init.o
|
|
endif
|