diff options
author | Mingkai Hu <Mingkai.hu@freescale.com> | 2009-09-11 10:53:08 +0800 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2009-10-03 09:04:28 -0500 |
commit | a87426e6dc464839407ee92f133cabf38944b605 (patch) | |
tree | bd4e67ff8bb234e7091b27cafac428b3de212345 /board/sheldon/simpc8313/simpc8313.c | |
parent | 9f3243612ca29c40a55ab0c3927e072349690610 (diff) |
NAND boot: change NAND loader's relocate SP to CONFIG param
So that we can set the NAND loader's relocate stack pointer
to the value other than the relocate address + 0x10000.
Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
Acked-by: Kim Phillips <kim.phillips@freescale.com>
Acked-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/sheldon/simpc8313/simpc8313.c')
-rw-r--r-- | board/sheldon/simpc8313/simpc8313.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/sheldon/simpc8313/simpc8313.c b/board/sheldon/simpc8313/simpc8313.c index 25e5c2409d..1044de2a47 100644 --- a/board/sheldon/simpc8313/simpc8313.c +++ b/board/sheldon/simpc8313/simpc8313.c @@ -112,7 +112,7 @@ void board_init_f(ulong bootflag) puts("NAND boot... "); init_timebase(); initdram(0); - relocate_code(CONFIG_SYS_NAND_U_BOOT_RELOC + 0x10000, (gd_t *)gd, + relocate_code(CONFIG_SYS_NAND_U_BOOT_RELOC_SP, (gd_t *)gd, CONFIG_SYS_NAND_U_BOOT_RELOC); } |