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>master
parent
650fda93c8
commit
5cd9661dc6
@ -0,0 +1,10 @@ |
||||
menu "TI specific command line interface" |
||||
|
||||
config CMD_DDR3 |
||||
bool "command for verifying DDR features" |
||||
help |
||||
Support for testing ddr3 on TI platforms. This command |
||||
supports memory verification, memory comapre and ecc |
||||
verification if supported. |
||||
|
||||
endmenu |
@ -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 |
@ -1,8 +1,7 @@ |
||||
/*
|
||||
* Keystone2: DDR3 test commands |
||||
* EMIF: DDR3 test commands |
||||
* |
||||
* (C) Copyright 2012-2014 |
||||
* Texas Instruments Incorporated, <www.ti.com> |
||||
* Copyright (C) 2012-2017 Texas Instruments Incorporated, <www.ti.com> |
||||
* |
||||
* SPDX-License-Identifier: GPL-2.0+ |
||||
*/ |
Loading…
Reference in new issue