diff options
author | wdenk <wdenk> | 2003-07-24 23:38:38 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-07-24 23:38:38 +0000 |
commit | 27b207fd0a0941b03f27e2a82c0468b1a090c745 (patch) | |
tree | 4d339d7a2a00889f09a876425ce430be57de56e9 /lib_mips | |
parent | 2535d60277cc295adf75cd5721dcecd840c69a63 (diff) |
* Implement new mechanism to export U-Boot's functions to standalone
applications: instead of using (PPC-specific) system calls we now
use a jump table; please see doc/README.standalone for details
* Patch by Dave Westwood, 24 Jul 2003:
added support for Unity OS (a proprietary OS)
Diffstat (limited to 'lib_mips')
-rw-r--r-- | lib_mips/board.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib_mips/board.c b/lib_mips/board.c index 11e5011e70c..3c8a2d2d242 100644 --- a/lib_mips/board.c +++ b/lib_mips/board.c @@ -25,7 +25,6 @@ #include <command.h> #include <malloc.h> #include <devices.h> -#include <syscall.h> #include <version.h> #include <net.h> #include <environment.h> @@ -189,7 +188,7 @@ void board_init_f(ulong bootflag) /* Pointer is writable since we allocated a register for it. */ gd = &gd_data; - memset (gd, 0, sizeof (gd_t)); + memset ((void *)gd, 0, sizeof (gd_t)); for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { if ((*init_fnc_ptr)() != 0) { @@ -278,7 +277,7 @@ void board_init_f(ulong bootflag) bd->bi_memsize = gd->ram_size; /* size of DRAM memory in bytes */ bd->bi_baudrate = gd->baudrate; /* Console Baudrate */ - memcpy (id, gd, sizeof (gd_t)); + memcpy (id, (void *)gd, sizeof (gd_t)); /* On the purple board we copy the code in a special way * in order to solve flash problems @@ -393,8 +392,7 @@ void board_init_r (gd_t *id, ulong dest_addr) /* Initialize devices */ devices_init (); - /* allocate syscalls table (console_init_r will fill it in */ - syscall_tbl = (void **) malloc (NR_SYSCALLS * sizeof (void *)); + jumptable_init (); /* Initialize the console (after the relocation and devices init) */ console_init_r (); |