summaryrefslogtreecommitdiffstats
path: root/src/core/gdbserial.c
Commit message (Collapse)AuthorAgeFilesLines
* [GDB] Provide functions to manually enter GDB stub.Stefan Hajnoczi2008-06-301-0/+5
|
* [GDB] Remote debugging over UDPStefan Hajnoczi2008-06-301-0/+41
This commit implements GDB over UDP. Using UDP is more complex than serial and has required some restructuring. The GDB stub is now built using one or both of GDBSERIAL and GDBUDP config.h options. To enter the debugger, execute the gPXE shell command: gdbstub <transport> [<options>...] Where <transport> is "serial" or "udp". For "udp", the name of a configured network device is required: gdbstub udp net0 The GDB stub listens on UDP port 43770 by default.