
Hi Christopher,
Le 07/07/2011 16:31, Christopher Harvey a écrit :
Signed-off-by: Christopher Harveycharvey@matrox.com
V2: I didn't receive comments on this one. By not compiling this by default it removes a couple of #defines people need to think about. Also, I'm guessing the memory test isn't used very much, so this makes u-boot a bit smaller.
common/cmd_mem.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/common/cmd_mem.c b/common/cmd_mem.c index a5576aa..833af66 100644 --- a/common/cmd_mem.c +++ b/common/cmd_mem.c @@ -610,6 +610,8 @@ int do_mem_loopw (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) } #endif /* CONFIG_LOOPW */
+#ifdef CONFIG_CMD_MTEST
- /*
- Perform a memory test. A more complete alternative test can be
- configured using CONFIG_SYS_ALT_MEMTEST. The complete test loops until
@@ -965,6 +967,7 @@ int do_mem_mtest (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) return 0; /* not reached */ }
+#endif /* CONFIG_CMD_MTEST */
/* Modify memory.
@@ -1245,11 +1248,13 @@ U_BOOT_CMD( ); #endif /* CONFIG_LOOPW */
+#ifdef CONFIG_CMD_MTEST U_BOOT_CMD( mtest, 5, 1, do_mem_mtest, "simple RAM read/write test", "[start [end [pattern [iterations]]]]" ); +#endif /* CONFIG_CMD_MTEST */
#ifdef CONFIG_MX_CYCLIC U_BOOT_CMD(
Applied to u-boot-arm/master, thanks!
Amicalement,