Update of /cvsroot/blob/blob/src
In directory usw-pr-cvs1:/tmp/cvs-serv15570/src
Modified Files:
main.c util.c
Log Message:
The last changes for blob-2.0.3:
- documentation updates
- minor cosmetic fixes
Index: main.c
===================================================================
RCS file: /cvsroot/blob/blob/src/main.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- main.c 2001/08/06 22:44:52 1.2
+++ main.c 2001/08/07 17:36:48 1.3
@@ -128,11 +128,11 @@
/* print some information */
SerialOutputString("Running from ");
if(RunningFromInternal())
- SerialOutputString("internal flash\n");
+ SerialOutputString("internal");
else
- SerialOutputString("external flash\n");
+ SerialOutputString("external");
- SerialOutputString(", blockSize = 0x");
+ SerialOutputString(" flash, blockSize = 0x");
SerialOutputHex(blockSize);
SerialOutputByte('\n');
#endif
@@ -347,12 +347,12 @@
SerialOutputString("* clock PPCR MDCNFG MDCAS0 MDCAS1 MDCAS2\n");
SerialOutputString(" Set the SA1100 core clock and DRAM timings\n");
SerialOutputString(" (WARNING: dangerous command!)\n");
- SerialOutputString("* download {blob|kernel|ramdisk} Download kernel or ramdisk image to RAM\n");
- SerialOutputString("* flash {blob|kernel|ramdisk} Copy kernel or ramdisk from RAM to flash\n");
+ SerialOutputString("* download {blob|kernel|ramdisk} Download blob/kernel/ramdisk image to RAM\n");
+ SerialOutputString("* flash {blob|kernel|ramdisk} Copy blob/kernel/ramdisk from RAM to flash\n");
SerialOutputString("* help Get this help\n");
SerialOutputString("* reblob Restart blob from RAM\n");
SerialOutputString("* reboot Reboot system\n");
- SerialOutputString("* reload {blob|kernel|ramdisk} Reload kernel or ramdisk from flash to RAM\n");
+ SerialOutputString("* reload {blob|kernel|ramdisk} Reload blob/kernel/ramdisk from flash to RAM\n");
SerialOutputString("* reset Reset terminal\n");
SerialOutputString("* speed Set download speed\n");
SerialOutputString("* status Display current status\n");
Index: util.c
===================================================================
RCS file: /cvsroot/blob/blob/src/util.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- util.c 2001/08/06 22:44:52 1.2
+++ util.c 2001/08/07 17:36:48 1.3
@@ -45,13 +45,13 @@
void MyMemCpy(u32 *dest, const u32 *src, int numWords)
{
#ifdef BLOB_DEBUG
- SerialOutputString("# Now copying 0x");
+ SerialOutputString("\n### Now copying 0x");
SerialOutputHex(numWords);
SerialOutputString(" words from 0x");
SerialOutputHex((int)src);
SerialOutputString(" to 0x");
SerialOutputHex((int)dest);
- SerialOutputString("...");
+ SerialOutputByte('\n');
#endif
while(numWords--) {
|