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) --- tools/updater/flash.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/updater/flash.c') diff --git a/tools/updater/flash.c b/tools/updater/flash.c index d2e11d2124..99b17195e5 100644 --- a/tools/updater/flash.c +++ b/tools/updater/flash.c @@ -157,9 +157,9 @@ flash_write (uchar *src, ulong addr, ulong cnt) } } - mon_printf("\rWriting "); - for (j=0; j<20; j++) mon_putc(177); - mon_printf("\rWriting "); + printf("\rWriting "); + for (j=0; j<20; j++) putc(177); + printf("\rWriting "); /* finally write data to flash */ for (info = info_first; info <= info_last && cnt>0; ++info) { -- cgit v1.2.1