diff options
Diffstat (limited to 'lib_ppc/board.c')
-rw-r--r-- | lib_ppc/board.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index bfc494e..2541a54 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -149,6 +149,8 @@ static void syscalls_init (void) syscall_tbl[SYSCALL_INSTALL_HDLR] = (void *) irq_install_handler; syscall_tbl[SYSCALL_FREE_HDLR] = (void *) irq_free_handler; + syscall_tbl[SYSCALL_GET_TIMER] = (void *)get_timer; + syscall_tbl[SYSCALL_UDELAY] = (void *)udelay; addr = (ulong *) 0xc00; /* syscall ISR addr */ @@ -420,6 +422,10 @@ void board_init_f (ulong bootflag) printf ("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr); #endif +#ifdef CONFIG_AMIGAONEG3SE + gd->relocaddr = addr; +#endif + /* * reserve memory for malloc() arena */ |