mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-01 20:12:01 +08:00
* target.h: Add to_doc and target_preopen.
target.c: Add target_preopen and target_command. Remove target_info. (add_target): Call add_cmd and mess with targetlist->doc. core.c, exec.c, remote-eb.c, remote-nindy.c, remote-vx.c, remote-vx.68.c, inftarg.c, remote.c: Add doc field to target struct. Call target_preopen from open routine.
This commit is contained in:
@ -162,6 +162,8 @@ remote_open (name, from_tty)
|
||||
"To open a remote debug connection, you need to specify what serial\n\
|
||||
device is attached to the remote system (e.g. /dev/ttya).");
|
||||
|
||||
target_preopen (from_tty);
|
||||
|
||||
remote_close (0);
|
||||
|
||||
#if 0
|
||||
@ -805,6 +807,8 @@ dcache_init ()
|
||||
|
||||
struct target_ops remote_ops = {
|
||||
"remote", "Remote serial target in gdb-specific protocol",
|
||||
"Use a remote computer via a serial line, using a gdb-specific protocol.\n\
|
||||
Specify the serial device it is connected to (e.g. /dev/ttya).",
|
||||
remote_open, remote_close,
|
||||
0, remote_detach, remote_resume, remote_wait, /* attach */
|
||||
remote_fetch_registers, remote_store_registers,
|
||||
|
Reference in New Issue
Block a user