diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-03-29 22:58:55 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-03-29 22:58:55 +0000 |
commit | f4267320e53ab3885d2b509099528472cc1fef9a (patch) | |
tree | a617b6b58965b92d02e2aceda913a85ae66ae8b0 /gdb/doc | |
parent | 698ba9341ed2a509079635b532aa3593d86aa047 (diff) | |
download | gdb-f4267320e53ab3885d2b509099528472cc1fef9a.zip gdb-f4267320e53ab3885d2b509099528472cc1fef9a.tar.gz gdb-f4267320e53ab3885d2b509099528472cc1fef9a.tar.bz2 |
2006-03-29 Daniel Jacobowitz <dan@codesourcery.com>
* NEWS: Mention the removal of NLM.
2006-03-29 Steve Ellcey <sje@cup.hp.com>
* Makefile.in (nlm): Remove target.
* configure.tgt (i[34567]86-*-netware*): Do not set build_nlm.
* configure.ac: Remove AC_CONFIG_SUBDIRS of nlm.
* configure: Regenerate.
* doc/gdb.texinfo: Remove gdbserve.nlm documentation.
* nlm: Remove directory.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/gdb.texinfo | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 15dd18d..b50007d 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -12139,7 +12139,6 @@ want to try. @menu * Connecting:: Connecting to a remote target * Server:: Using the gdbserver program -* NetWare:: Using the gdbserve.nlm program * Remote configuration:: Remote configuration * remote stub:: Implementing a remote stub @end menu @@ -12396,51 +12395,6 @@ program is considered running after the connection. @end table -@node NetWare -@section Using the @code{gdbserve.nlm} program - -@kindex gdbserve.nlm -@code{gdbserve.nlm} is a control program for NetWare systems, which -allows you to connect your program with a remote @value{GDBN} via -@code{target remote}. - -@value{GDBN} and @code{gdbserve.nlm} communicate via a serial line, -using the standard @value{GDBN} remote serial protocol. - -@table @emph -@item On the target machine, -you need to have a copy of the program you want to debug. -@code{gdbserve.nlm} does not need your program's symbol table, so you -can strip the program if necessary to save space. @value{GDBN} on the -host system does all the symbol handling. - -To use the server, you must tell it how to communicate with -@value{GDBN}; the name of your program; and the arguments for your -program. The syntax is: - -@smallexample -load gdbserve [ BOARD=@var{board} ] [ PORT=@var{port} ] - [ BAUD=@var{baud} ] @var{program} [ @var{args} @dots{} ] -@end smallexample - -@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@dmn{bps}. - -For example, to debug Emacs with the argument @samp{foo.txt}and -communicate with @value{GDBN} over serial port number 2 or board 1 -using a 19200@dmn{bps} connection: - -@smallexample -load gdbserve BOARD=1 PORT=2 BAUD=19200 emacs foo.txt -@end smallexample - -@item -On the @value{GDBN} host machine, connect to your target (@pxref{Connecting,, -Connecting to a remote target}). - -@end table - @node Remote configuration @section Remote configuration |