diff options
Diffstat (limited to 'src/include/ipxe/gdbserial.h')
-rw-r--r-- | src/include/ipxe/gdbserial.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/include/ipxe/gdbserial.h b/src/include/ipxe/gdbserial.h new file mode 100644 index 00000000..a3b56173 --- /dev/null +++ b/src/include/ipxe/gdbserial.h @@ -0,0 +1,21 @@ +#ifndef _IPXE_GDBSERIAL_H +#define _IPXE_GDBSERIAL_H + +/** @file + * + * GDB remote debugging over serial + * + */ + +FILE_LICENCE ( GPL2_OR_LATER ); + +struct gdb_transport; + +/** + * Set up the serial transport + * + * @ret transport suitable for starting the GDB stub or NULL on error + */ +struct gdb_transport *gdbserial_configure ( void ); + +#endif /* _IPXE_GDBSERIAL_H */ |