2003-09-15 Marcel Telka <marcel@telka.sk>

* cmd/help.c (cmd_help_run): Fixed spelling (patch 805108, Andreas Mohr).
	* flash/detectflash.c (detectflash): Ditto.


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@567 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 21 years ago
parent 872e2d05be
commit 3e82519895

@ -1,3 +1,8 @@
2003-09-15 Marcel Telka <marcel@telka.sk>
* cmd/help.c (cmd_help_run): Fixed spelling (patch 805108, Andreas Mohr).
* flash/detectflash.c (detectflash): Ditto.
2003-08-28 Marcel Telka <marcel@telka.sk>
* flash/cfi.c (cfi_detect): Replaced bus_width macro with new bus_area.

@ -1,5 +1,6 @@
$Id$
2003-09-15: Fixed spelling (patch 805108, Andreas Mohr).
2003-08-13: Added support for Intel SCS command set (patch 787978, Jani Monoses).
2003-08-11: Added support for 1 x 8 bit AMD Flash (patch 772499, Matan Ziv-Av).
2003-06-18: Added support for 1 x 8 bit Intel Flash (patch 753295, Matan Ziv-Av).

@ -1,4 +1,5 @@
$Id$
Andreas Mohr
Jani Monoses
Matan Ziv-Av

@ -39,14 +39,14 @@ cmd_help_run( char *params[] )
printf( _("Command list:\n\n") );
for (i = 0; cmds[i]; i++)
printf( _("%-13s %s\n"), cmds[i]->name, cmds[i]->desc ? _(cmds[i]->desc) : _("(no description available)") );
printf( _("\nType \"help COMMAND\" for details about particular command.\n") );
printf( _("\nType \"help COMMAND\" for details about a particular command.\n") );
return 1;
}
if (params[2])
return -1;
/* search and print help for particular command */
/* search and print help for a particular command */
for (i = 0; cmds[i]; i++)
if (strcmp( cmds[i]->name, params[1] ) == 0) {
if (cmds[i]->help)

@ -75,7 +75,7 @@ detectflash( bus_t *bus )
s = N_("Intel/Sharp Extended Command Set");
break;
case CFI_VENDOR_AMD_SCS:
s = N_("AMD/Fujitsu Standard Commanf Set");
s = N_("AMD/Fujitsu Standard Command Set");
break;
case CFI_VENDOR_INTEL_SCS:
s = N_("Intel Standard Command Set");
@ -105,7 +105,7 @@ detectflash( bus_t *bus )
s = N_("Intel/Sharp Extended Command Set");
break;
case CFI_VENDOR_AMD_SCS:
s = N_("AMD/Fujitsu Standard Commanf Set");
s = N_("AMD/Fujitsu Standard Command Set");
break;
case CFI_VENDOR_INTEL_SCS:
s = N_("Intel Standard Command Set");

Loading…
Cancel
Save