diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1995-03-29 00:57:44 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1995-03-29 00:57:44 +0000 |
commit | 7d777b91ad1899323f4e61354ef67058ff583a1e (patch) | |
tree | 538d991553df9c4719db52a9db08830b78a5d7aa /gdb/doc/remote.texi | |
parent | 0cd908d2b97eb153f67c09fe9cbb5233557648e8 (diff) | |
download | gdb-7d777b91ad1899323f4e61354ef67058ff583a1e.zip gdb-7d777b91ad1899323f4e61354ef67058ff583a1e.tar.gz gdb-7d777b91ad1899323f4e61354ef67058ff583a1e.tar.bz2 |
* remote.texi (NetWare): Changed example to use BOARD= instead of
NODE= argument to reflect correspoding change to gdbserve.nlm.
Diffstat (limited to 'gdb/doc/remote.texi')
-rw-r--r-- | gdb/doc/remote.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/doc/remote.texi b/gdb/doc/remote.texi index 90f3944..cdae313 100644 --- a/gdb/doc/remote.texi +++ b/gdb/doc/remote.texi @@ -563,19 +563,19 @@ To use the server, you must tell it how to communicate with program. The syntax is: @smallexample -load gdbserve [ PORT=@var{port} ] [ NODE=@var{node} ] [ BAUD=@var{baud} ] @var{program} [ @var{args} @dots{} ] +load gdbserve [ BOARD=@var{board} ] [ PORT=@var{port} ] [ BAUD=@var{baud} ] @var{program} [ @var{args} @dots{} ] @end smallexample -@var{port} and @var{node} specify the serial line; @var{baud} specifies +@var{board} and @var{port} specify the serial line; @var{baud} specifies the baud rate used by the connection. @var{port} and @var{node} default to 0, @var{baud} defaults to 9600 bps. For example, to debug Emacs with the argument @samp{foo.txt}and -communicate with @value{GDBN} over the first serial port using a 19200 -bps connection: +communicate with @value{GDBN} over serial port number 2 or board 1 +using a 19200 bps connection: @smallexample -load gdbserve BAUD=19200 emacs foo.txt +load gdbserve BOARD=1 PORT=2 BAUD=19200 emacs foo.txt @end smallexample @item On the @value{GDBN} host machine, |