* remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
concatenation for command help messages.
This commit is contained in:
parent
13a38d4599
commit
0e2bd21956
2 changed files with 30 additions and 23 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-05-08 Richard Earnshaw <rearnsha@arm.com>
|
||||
|
||||
* remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
|
||||
concatenation for command help messages.
|
||||
|
||||
2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
|
||||
|
||||
* NEWS: Note new sh*-*-netbsdelf* configuration.
|
||||
|
|
|
@ -1023,39 +1023,41 @@ _initialize_remote_rdi (void)
|
|||
|
||||
c = add_cmd ("rdilogfile", class_maintenance,
|
||||
rdilogfile_command,
|
||||
"Set filename for ADP packet log.\n\
|
||||
This file is used to log Angel Debugger Protocol packets.\n\
|
||||
With a single argument, sets the logfile name to that value.\n\
|
||||
Without an argument, shows the current logfile name.\n\
|
||||
See also: rdilogenable\n",
|
||||
&maintenancelist);
|
||||
"Set filename for ADP packet log.\n"
|
||||
"This file is used to log Angel Debugger Protocol packets.\n"
|
||||
"With a single argument, sets the logfile name to that value.\n"
|
||||
"Without an argument, shows the current logfile name.\n"
|
||||
"See also: rdilogenable\n",
|
||||
&maintenancelist);
|
||||
set_cmd_completer (c, filename_completer);
|
||||
|
||||
add_cmd ("rdilogenable", class_maintenance,
|
||||
rdilogenable_command,
|
||||
"Set enable logging of ADP packets.\n\
|
||||
This will log ADP packets exchanged between gdb and the\n\
|
||||
rdi target device.\n\
|
||||
An argument of 1,t,true,y,yes will enable.\n\
|
||||
An argument of 0,f,false,n,no will disabled.\n\
|
||||
Withough an argument, it will display current state.\n",
|
||||
"Set enable logging of ADP packets.\n"
|
||||
"This will log ADP packets exchanged between gdb and the\n"
|
||||
"rdi target device.\n"
|
||||
"An argument of 1, t, true, y or yes will enable.\n"
|
||||
"An argument of 0, f, false, n or no will disabled.\n"
|
||||
"Withough an argument, it will display current state.\n",
|
||||
&maintenancelist);
|
||||
|
||||
add_show_from_set
|
||||
(add_set_boolean_cmd ("rdiromatzero", no_class, &rom_at_zero,
|
||||
"Set target has ROM at addr 0.\n\
|
||||
A true value disables vector catching, false enables vector catching.\n\
|
||||
This is evaluated at the time the 'target rdi' command is executed\n",
|
||||
&setlist),
|
||||
(add_set_boolean_cmd
|
||||
("rdiromatzero", no_class, &rom_at_zero,
|
||||
"Set target has ROM at addr 0.\n"
|
||||
"A true value disables vector catching, false enables vector catching.\n"
|
||||
"This is evaluated at the time the 'target rdi' command is executed\n",
|
||||
&setlist),
|
||||
&showlist);
|
||||
|
||||
add_show_from_set
|
||||
(add_set_boolean_cmd ("rdiheartbeat", no_class, &rdi_heartbeat,
|
||||
"Set enable for ADP heartbeat packets.\n\
|
||||
I don't know why you would want this. If you enable them,\n\
|
||||
it will confuse ARM and EPI JTAG interface boxes as well\n\
|
||||
as the Angel Monitor.\n",
|
||||
&setlist),
|
||||
(add_set_boolean_cmd
|
||||
("rdiheartbeat", no_class, &rdi_heartbeat,
|
||||
"Set enable for ADP heartbeat packets.\n"
|
||||
"I don't know why you would want this. If you enable them,\n"
|
||||
"it will confuse ARM and EPI JTAG interface boxes as well\n"
|
||||
"as the Angel Monitor.\n",
|
||||
&setlist),
|
||||
&showlist);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue