From 27b207fd0a0941b03f27e2a82c0468b1a090c745 Mon Sep 17 00:00:00 2001 From: wdenk Date: Thu, 24 Jul 2003 23:38:38 +0000 Subject: * 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) --- common/cmd_load.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'common/cmd_load.c') diff --git a/common/cmd_load.c b/common/cmd_load.c index 0ea8c4b4e4..5622452ccb 100644 --- a/common/cmd_load.c +++ b/common/cmd_load.c @@ -28,7 +28,7 @@ #include #include #include -#include +#include #if (CONFIG_COMMANDS & CFG_CMD_LOADS) @@ -213,6 +213,7 @@ load_serial (ulong offset) static int read_record (char *buf, ulong len) { + DECLARE_GLOBAL_DATA_PTR; char *p; char c; @@ -236,13 +237,11 @@ read_record (char *buf, ulong len) } /* Check for the console hangup (if any different from serial) */ -#ifdef CONFIG_PPC /* we don't have syscall_tbl anywhere else */ - if (syscall_tbl[SYSCALL_GETC] != serial_getc) { + if (gd->jt[XF_getc] != serial_getc) { if (ctrlc()) { return (-1); } } -#endif } /* line too long - truncate */ @@ -479,7 +478,7 @@ int do_load_serial_bin (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) printf ("## Ready for binary (kermit) download " "to 0x%08lX at %d bps...\n", offset, - current_baudrate); + load_baudrate); addr = load_serial_bin (offset); if (addr == ~0) { -- cgit v1.2.1