summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTroy Kisky <troy.kisky@boundarydevices.com>2013-06-19 13:14:07 -0700
committerTroy Kisky <troy.kisky@boundarydevices.com>2013-06-19 13:24:05 -0700
commita9d4d89cf27d1f1c7d4982fd65b22a8d0b2263c3 (patch)
tree969446c3e065caaf4ec613c9361a6fa99333bb5c
parent008684063194e6a5f2db050ac5a0d5f20956c80e (diff)
Switch to physical memory for go
-rw-r--r--common/cmd_boot.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/cmd_boot.c b/common/cmd_boot.c
index d3836fdfd8..23ddda3b0c 100644
--- a/common/cmd_boot.c
+++ b/common/cmd_boot.c
@@ -54,6 +54,7 @@ static int do_go(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
* pass address parameter as argv[0] (aka command name),
* and all remaining args
*/
+ cleanup_before_linux();
rc = do_go_exec ((void *)addr, argc - 1, argv + 1);
if (rc != 0) rcode = 1;