|
@@ -1,33 +0,0 @@
|
1
|
|
-#include <stdio.h>
|
2
|
|
-#include <gpxe/init.h>
|
3
|
|
-#include <console.h>
|
4
|
|
-#include <realmode.h>
|
5
|
|
-
|
6
|
|
-extern char __text[];
|
7
|
|
-extern char __rodata[];
|
8
|
|
-extern char __data[];
|
9
|
|
-extern char __bss[];
|
10
|
|
-extern char __text16[];
|
11
|
|
-extern char __data16[];
|
12
|
|
-
|
13
|
|
-
|
14
|
|
-static void gdb_symbol_line ( void ) {
|
15
|
|
- printf ( "Commands to start up gdb:\n\n" );
|
16
|
|
- printf ( "gdb\n" );
|
17
|
|
- printf ( "target remote localhost:1234\n" );
|
18
|
|
- printf ( "set confirm off\n" );
|
19
|
|
- printf ( "add-symbol-file symbols %#lx", virt_to_phys ( __text ) );
|
20
|
|
- printf ( " -s .rodata %#lx", virt_to_phys ( __rodata ) );
|
21
|
|
- printf ( " -s .data %#lx", virt_to_phys ( __data ) );
|
22
|
|
- printf ( " -s .bss %#lx", virt_to_phys ( __bss ) );
|
23
|
|
- printf ( " -s .text16 %#x", ( ( rm_cs << 4 ) + (int)__text16 ) );
|
24
|
|
- printf ( " -s .data16 %#x", ( ( rm_ds << 4 ) + (int)__data16 ) );
|
25
|
|
- printf ( "\n" );
|
26
|
|
- printf ( "add-symbol-file symbols 0\n" );
|
27
|
|
- printf ( "set confirm on\n" );
|
28
|
|
- getkey();
|
29
|
|
-}
|
30
|
|
-
|
31
|
|
-struct startup_fn gdb_startup_fn __startup_fn ( STARTUP_NORMAL ) = {
|
32
|
|
- .startup = gdb_symbol_line,
|
33
|
|
-};
|