diff options
author | obrien <obrien@FreeBSD.org> | 2004-11-19 03:51:12 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-11-19 03:51:12 +0000 |
commit | 07115bc66a17779689674b6e33d94f70a90319d7 (patch) | |
tree | 9720727eb3ac8381c1c01d68bbe53281b70932fb /tools/debugscripts | |
parent | 201a68af49108413f05ec498dfa3b78fe2f69105 (diff) | |
download | FreeBSD-src-07115bc66a17779689674b6e33d94f70a90319d7.zip FreeBSD-src-07115bc66a17779689674b6e33d94f70a90319d7.tar.gz |
Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].
Diffstat (limited to 'tools/debugscripts')
-rw-r--r-- | tools/debugscripts/dot.gdbinit | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/debugscripts/dot.gdbinit b/tools/debugscripts/dot.gdbinit index 642ef38..683922a 100644 --- a/tools/debugscripts/dot.gdbinit +++ b/tools/debugscripts/dot.gdbinit @@ -37,16 +37,16 @@ target remote $arg0 end document tr -Debug a remote system via serial or firewire interface. For example, specify 'tr /dev/cuaa0' to use first serial port, or 'tr localhost:5556' for default firewire port. See also tr0, tr1 and trf commands. +Debug a remote system via serial or firewire interface. For example, specify 'tr /dev/cuad0' to use first serial port, or 'tr localhost:5556' for default firewire port. See also tr0, tr1 and trf commands. end # Convenience functions. These call tr. -# debug via cuaa0 +# debug via cuad0 define tr0 -tr /dev/cuaa0 +tr /dev/cuad0 end define tr1 -tr /dev/cuaa1 +tr /dev/cuad1 end # Firewire define trf @@ -54,10 +54,10 @@ tr localhost:5556 end document tr0 -Debug a remote system via serial interface /dev/cuaa0. See also tr, tr1 and trf commands. +Debug a remote system via serial interface /dev/cuad0. See also tr, tr1 and trf commands. end document tr1 -Debug a remote system via serial interface /dev/cuaa1. See also tr, tr0 and trf commands. +Debug a remote system via serial interface /dev/cuad1. See also tr, tr0 and trf commands. end document trf Debug a remote system via firewire interface at default port 5556. See also tr, tr0 and tr1 commands. @@ -108,7 +108,7 @@ source gdbinit.kernel source gdbinit.machine echo Ready to go. Enter 'tr' to connect to the remote target\n -echo with /dev/cuaa0, 'tr /dev/cuaa1' to connect to a different port\n +echo with /dev/cuad0, 'tr /dev/cuad1' to connect to a different port\n echo or 'trf portno' to connect to the remote target with the firewire\n echo interface. portno defaults to 5556.\n echo \n |