mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-24 06:24:17 +00:00
arm: mediatek: remove CONFIG_MT8512
Defining CONFIG_MT8512 is unnecessary as now board for mediatek target can be changed in config. Use CONFIG_TARGET_MT8512 to replace CONFIG_MT8512. Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
This commit is contained in:
parent
f777cb8815
commit
c36945065f
3 changed files with 3 additions and 7 deletions
|
@ -6,9 +6,6 @@ config SYS_SOC
|
||||||
config SYS_VENDOR
|
config SYS_VENDOR
|
||||||
default "mediatek"
|
default "mediatek"
|
||||||
|
|
||||||
config MT8512
|
|
||||||
bool "MediaTek MT8512 SoC"
|
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "MediaTek board select"
|
prompt "MediaTek board select"
|
||||||
|
|
||||||
|
@ -96,9 +93,8 @@ config TARGET_MT8365
|
||||||
I2C, I2S, S/PDIF, and several LPDDR3 and LPDDR4 options.
|
I2C, I2S, S/PDIF, and several LPDDR3 and LPDDR4 options.
|
||||||
|
|
||||||
config TARGET_MT8512
|
config TARGET_MT8512
|
||||||
bool "MediaTek MT8512 M1 Board"
|
bool "MediaTek MT8512 SoC"
|
||||||
select ARM64
|
select ARM64
|
||||||
select MT8512
|
|
||||||
help
|
help
|
||||||
The MediaTek MT8512 is a ARM64-based SoC with a dual-core Cortex-A53.
|
The MediaTek MT8512 is a ARM64-based SoC with a dual-core Cortex-A53.
|
||||||
including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM,
|
including UART, SPI, USB2.0 and OTG, SD and MMC cards, NAND, PWM,
|
||||||
|
|
|
@ -4,7 +4,6 @@ obj-y += cpu.o
|
||||||
obj-$(CONFIG_MTK_TZ_MOVABLE) += tzcfg.o
|
obj-$(CONFIG_MTK_TZ_MOVABLE) += tzcfg.o
|
||||||
obj-$(CONFIG_XPL_BUILD) += spl.o
|
obj-$(CONFIG_XPL_BUILD) += spl.o
|
||||||
|
|
||||||
obj-$(CONFIG_MT8512) += mt8512/
|
|
||||||
obj-$(CONFIG_TARGET_MT7622) += mt7622/
|
obj-$(CONFIG_TARGET_MT7622) += mt7622/
|
||||||
obj-$(CONFIG_TARGET_MT7623) += mt7623/
|
obj-$(CONFIG_TARGET_MT7623) += mt7623/
|
||||||
obj-$(CONFIG_TARGET_MT7629) += mt7629/
|
obj-$(CONFIG_TARGET_MT7629) += mt7629/
|
||||||
|
@ -14,5 +13,6 @@ obj-$(CONFIG_TARGET_MT7987) += mt7987/
|
||||||
obj-$(CONFIG_TARGET_MT7988) += mt7988/
|
obj-$(CONFIG_TARGET_MT7988) += mt7988/
|
||||||
obj-$(CONFIG_TARGET_MT8183) += mt8183/
|
obj-$(CONFIG_TARGET_MT8183) += mt8183/
|
||||||
obj-$(CONFIG_TARGET_MT8365) += mt8365/
|
obj-$(CONFIG_TARGET_MT8365) += mt8365/
|
||||||
|
obj-$(CONFIG_TARGET_MT8512) += mt8512/
|
||||||
obj-$(CONFIG_TARGET_MT8516) += mt8516/
|
obj-$(CONFIG_TARGET_MT8516) += mt8516/
|
||||||
obj-$(CONFIG_TARGET_MT8518) += mt8518/
|
obj-$(CONFIG_TARGET_MT8518) += mt8518/
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
obj-$(CONFIG_ARCH_MEDIATEK) += clk-mtk.o
|
obj-$(CONFIG_ARCH_MEDIATEK) += clk-mtk.o
|
||||||
|
|
||||||
# SoC Drivers
|
# SoC Drivers
|
||||||
obj-$(CONFIG_MT8512) += clk-mt8512.o
|
|
||||||
obj-$(CONFIG_TARGET_MT7623) += clk-mt7623.o
|
obj-$(CONFIG_TARGET_MT7623) += clk-mt7623.o
|
||||||
obj-$(CONFIG_TARGET_MT7622) += clk-mt7622.o
|
obj-$(CONFIG_TARGET_MT7622) += clk-mt7622.o
|
||||||
obj-$(CONFIG_TARGET_MT7629) += clk-mt7629.o
|
obj-$(CONFIG_TARGET_MT7629) += clk-mt7629.o
|
||||||
|
@ -13,5 +12,6 @@ obj-$(CONFIG_TARGET_MT7988) += clk-mt7988.o
|
||||||
obj-$(CONFIG_TARGET_MT7987) += clk-mt7987.o
|
obj-$(CONFIG_TARGET_MT7987) += clk-mt7987.o
|
||||||
obj-$(CONFIG_TARGET_MT8183) += clk-mt8183.o
|
obj-$(CONFIG_TARGET_MT8183) += clk-mt8183.o
|
||||||
obj-$(CONFIG_TARGET_MT8365) += clk-mt8365.o
|
obj-$(CONFIG_TARGET_MT8365) += clk-mt8365.o
|
||||||
|
obj-$(CONFIG_TARGET_MT8512) += clk-mt8512.o
|
||||||
obj-$(CONFIG_TARGET_MT8516) += clk-mt8516.o
|
obj-$(CONFIG_TARGET_MT8516) += clk-mt8516.o
|
||||||
obj-$(CONFIG_TARGET_MT8518) += clk-mt8518.o
|
obj-$(CONFIG_TARGET_MT8518) += clk-mt8518.o
|
||||||
|
|
Loading…
Add table
Reference in a new issue