diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2017-12-29 11:47:49 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-19 15:49:26 -0500 |
commit | 5cd9661dc68b40e6c03400dba131b92e71f9e730 (patch) | |
tree | db476155131cd6b1c423c4990631b974529eb691 /cmd/ti/Makefile | |
parent | 650fda93c89bcac54ff69603d879ea45f81987f9 (diff) |
arm: keystone: Move cmd_ddr3 to a common place
Move cmd_ddr3 to cmd/ti in order to make
it build for non-keystone TI platforms.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
[trini: Rename to ddr3.c not cmd_ddr3.c]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd/ti/Makefile')
-rw-r--r-- | cmd/ti/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/ti/Makefile b/cmd/ti/Makefile new file mode 100644 index 0000000000..7dba66f4e7 --- /dev/null +++ b/cmd/ti/Makefile @@ -0,0 +1,10 @@ +# Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/ +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj- += dummy.o + +ifndef CONFIG_SPL_BUILD +obj-$(CONFIG_CMD_DDR3) += ddr3.o +endif |