diff options
author | Heiko Schocher <hs@denx.de> | 2010-09-17 13:10:33 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-09-19 19:29:51 +0200 |
commit | 620f1f6a64095ed558e68d37f1965d015cd49b02 (patch) | |
tree | f2704340052bdeabf49dcde31f3f99cfcdc0bd24 /include/command.h | |
parent | 7e4a9e6dc819b2b3499659ca90e1e9c6d4ca3077 (diff) | |
download | u-boot-620f1f6a64095ed558e68d37f1965d015cd49b02.tar.gz |
relocation: fixup cmdtable
fixup_cmdtable() did all work for fixing up the cmdtable,
if CONFIG_RELOC_FIXUP_WORKS is not defined.
CONFIG_RELOC_FIXUP_WORKS is missing for i386! I talked
with Graeme Russ, and he will fix this soon.
Portions of this work were supported by funding from
the CE Linux Forum.
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'include/command.h')
-rw-r--r-- | include/command.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/command.h b/include/command.h index 9144d69206..5c14616233 100644 --- a/include/command.h +++ b/include/command.h @@ -125,4 +125,7 @@ cmd_tbl_t __u_boot_cmd_##name Struct_Section = {#name, maxargs, rep, cmd, usage} #endif /* CONFIG_SYS_LONGHELP */ +#if !defined(CONFIG_RELOC_FIXUP_WORKS) +void fixup_cmdtable(cmd_tbl_t *cmdtp, int size); +#endif #endif /* __COMMAND_H */ |