From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yoshinori Sato Date: Thu, 19 May 2016 21:26:47 +0900 Subject: [U-Boot] [PATCH 1/9] board_f: Add relocate_code stub In-Reply-To: <1463660815-26050-1-git-send-email-ysato@users.sourceforge.jp> References: <1463660815-26050-1-git-send-email-ysato@users.sourceforge.jp> Message-ID: <1463660815-26050-2-git-send-email-ysato@users.sourceforge.jp> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Signed-off-by: Yoshinori Sato --- common/board_f.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common/board_f.c b/common/board_f.c index 109025a..bf768d1 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -826,6 +826,11 @@ __weak int arch_cpu_init_dm(void) return 0; } +__weak void relocate_code(ulong sp, gd_t *new_gd, ulong reloc) +{ + for(;;); +} + static init_fnc_t init_sequence_f[] = { #ifdef CONFIG_SANDBOX setup_ram_buf, -- 2.7.0