diff options
author | Michael Brown <mcb30@ipxe.org> | 2024-09-04 13:29:30 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2024-09-05 13:00:39 +0100 |
commit | 2b82007571dbe02b85338dc9fa85251cd5d68028 (patch) | |
tree | b99584c83a74fbeb298c1ff4c13e2c89f5eaf41c /src/include/ipxe | |
parent | 804f35cb5a6ac7d35912822372b74fd8856f850b (diff) | |
download | ipxe-2b82007571dbe02b85338dc9fa85251cd5d68028.tar.gz |
[gdb] Allow CPU architectures to omit support for GDB
Move the <gdbmach.h> file to <bits/gdbmach.h>, and provide a common
dummy implementation for all architectures that have not yet
implemented support for GDB.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe')
-rw-r--r-- | src/include/ipxe/gdbstub.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/ipxe/gdbstub.h b/src/include/ipxe/gdbstub.h index 13ca33ddb..2240cca42 100644 --- a/src/include/ipxe/gdbstub.h +++ b/src/include/ipxe/gdbstub.h @@ -11,7 +11,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <stdint.h> #include <ipxe/tables.h> -#include <gdbmach.h> +#include <bits/gdbmach.h> /** * A transport mechanism for the GDB protocol |