From: Stefan E. <se...@us...> - 2001-11-13 13:22:38
|
Update of /cvsroot/blob/blob/src/blob In directory usw-pr-cvs1:/tmp/cvs-serv20213 Modified Files: system3.c Log Message: - fixed command name clashes Index: system3.c =================================================================== RCS file: /cvsroot/blob/blob/src/blob/system3.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- system3.c 2001/11/05 09:21:24 1.5 +++ system3.c 2001/11/13 13:22:35 1.6 @@ -146,9 +146,9 @@ DONE: return ret; } -static char downloadhelp[] = "download_file destadr filelength\n" +static char downloadhelp[] = "dlfile destadr filelength\n" "download file to memory\n"; -__commandlist( cmd_download_file, "download_file", downloadhelp ); +__commandlist( cmd_download_file, "dlfile", downloadhelp ); /********************************************************************* * cmd_flash_write @@ -191,9 +191,9 @@ DONE: return ret; } -static char flashwritehelp[] = "flash_write srcadr destadr size(bytes)\n" +static char flashwritehelp[] = "fwrite srcadr destadr size(bytes)\n" "flash a memory region\n"; -__commandlist( cmd_flash_write, "flash_write", flashwritehelp ); +__commandlist( cmd_flash_write, "fwrite", flashwritehelp ); /********************************************************************* * cmd_flash_erase @@ -228,6 +228,6 @@ DONE: return ret; } -static char flasherasehelp[] = "flash_erase adr size(bytes)\n" +static char flasherasehelp[] = "ferase adr size(bytes)\n" "erase a flash region\n"; -__commandlist( cmd_flash_erase, "flash_erase", flasherasehelp ); +__commandlist( cmd_flash_erase, "ferase", flasherasehelp ); |