diff options
author | Michal Simek | 2019-10-21 12:54:20 +0200 |
---|---|---|
committer | Michal Simek | 2019-10-24 13:37:03 +0200 |
commit | 6f94daf9151e76f68a2a46d15862e232436a14e3 (patch) | |
tree | a86e2aab37d816cd9e4481277aaefd37281dc7de /common | |
parent | f3035cf29958dbf21587a1bdb98eb9f692120d40 (diff) |
common: command: Fix manual relocation for repeatable command
All platforms which are using MANUAL_RELOC are jumping back to origin
location when repeatable command is called. The reason is that cmd_rep link
is not updated properly. Issue can be reproduced by rewriting origin
U-Boot location through (for example) file download by tftp command.
Fixes: 80a48dd47e3b ("common: command: Rework the 'cmd is repeatable' logic")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/command.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/command.c b/common/command.c index 4b887a267fb..ceca9925107 100644 --- a/common/command.c +++ b/common/command.c @@ -496,6 +496,11 @@ void fixup_cmdtable(cmd_tbl_t *cmdtp, int size) for (i = 0; i < size; i++) { ulong addr; + addr = (ulong)(cmdtp->cmd_rep) + gd->reloc_off; + cmdtp->cmd_rep = + (int (*)(struct cmd_tbl_s *, int, int, + char * const [], int *))addr; + addr = (ulong)(cmdtp->cmd) + gd->reloc_off; #ifdef DEBUG_COMMANDS printf("Command \"%s\": 0x%08lx => 0x%08lx\n", |