projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0267ba5
)
common/board_r: manual relocation for cmd table
author
Andreas Bießmann
<
[email protected]
>
Mon, 19 Jan 2015 23:29:05 +0000
(
00:29
+0100)
committer
Michal Simek
<
[email protected]
>
Mon, 9 Feb 2015 14:09:42 +0000
(15:09 +0100)
This is required for architectures still need manual relocation like avr32, mk68
and others.
Signed-off-by: Andreas Bießmann <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
Tested-by: Michal Simek <
[email protected]
>
common/board_r.c
patch
|
blob
|
history
diff --git
a/common/board_r.c
b/common/board_r.c
index 68a9448b5549da7f0e9b1d0db843dbd7f3de0486..f7a3b55193f2829ff3913560c048b624a7d32171 100644
(file)
--- 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