summaryrefslogtreecommitdiffstats
path: root/common/board_r.c
diff options
context:
space:
mode:
authorAndreas Bießmann <andreas.devel@googlemail.com>2015-01-20 00:29:05 +0100
committerMichal Simek <michal.simek@xilinx.com>2015-02-09 15:09:42 +0100
commit61d7b1bb5fb35c49e7391d511a282295949f260b (patch)
tree498202745135229ccda4850dabe2bab57db2659b /common/board_r.c
parent0267ba5d869cdc482c0b947ef8de89ce7403ac8c (diff)
downloadblackbird-obmc-uboot-61d7b1bb5fb35c49e7391d511a282295949f260b.tar.gz
blackbird-obmc-uboot-61d7b1bb5fb35c49e7391d511a282295949f260b.zip
common/board_r: manual relocation for cmd table
This is required for architectures still need manual relocation like avr32, mk68 and others. Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'common/board_r.c')
-rw-r--r--common/board_r.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/common/board_r.c b/common/board_r.c
index 68a9448b55..f7a3b55193 100644
--- a/common/board_r.c
+++ b/common/board_r.c
@@ -294,6 +294,15 @@ static int initr_announce(void)
return 0;
}
+#ifdef CONFIG_NEEDS_MANUAL_RELOC
+static int initr_manual_reloc_cmdtable(void)
+{
+ fixup_cmdtable(ll_entry_start(cmd_tbl_t, cmd),
+ ll_entry_count(cmd_tbl_t, cmd));
+ return 0;
+}
+#endif
+
#if !defined(CONFIG_SYS_NO_FLASH)
static int initr_flash(void)
{
@@ -702,6 +711,9 @@ init_fnc_t init_sequence_r[] = {
initr_serial,
initr_announce,
INIT_FUNC_WATCHDOG_RESET
+#ifdef CONFIG_NEEDS_MANUAL_RELOC
+ initr_manual_reloc_cmdtable,
+#endif
#ifdef CONFIG_PPC
initr_trap,
#endif
OpenPOWER on IntegriCloud