mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
ac34286647
The config option TARGET_K2x_EVM is set by the k2x defconfigs to pick a board target, but the header configs also set K2x_EVM. This config is redundant, remove it and use TARGET_K2x_EVM everywhere in its place. Signed-off-by: Andrew F. Davis <afd@ti.com> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
22 lines
440 B
Makefile
22 lines
440 B
Makefile
#
|
|
# (C) Copyright 2012-2014
|
|
# Texas Instruments Incorporated, <www.ti.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += init.o
|
|
obj-y += psc.o
|
|
obj-y += clock.o
|
|
obj-y += mon.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-y += cmd_clock.o
|
|
obj-y += cmd_mon.o
|
|
obj-y += cmd_poweroff.o
|
|
obj-y += cmd_ddr3.o
|
|
endif
|
|
obj-y += msmc.o
|
|
obj-y += ddr3.o
|
|
obj-y += keystone.o
|
|
obj-$(CONFIG_TARGET_K2E_EVM) += ddr3_spd.o
|
|
obj-$(CONFIG_TARGET_K2HK_EVM) += ddr3_spd.o
|