mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
80485af243
When we switch to including all linker lists in SPL it is important to not include commands as that may lead to link errors due to other things we have already discarded. In this case simply move cmd_ddr3.o over to the list with the rest. Cc: Vitaly Andrianov <vitalya@ti.com> Cc: Nishanth Menon <nm@ti.com> Cc: Lokesh Vutla <lokeshvutla@ti.com> Signed-off-by: Tom Rini <trini@konsulko.com>
22 lines
426 B
Makefile
22 lines
426 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_K2E_EVM) += ddr3_spd.o
|
|
obj-$(CONFIG_K2HK_EVM) += ddr3_spd.o
|