repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / 3rdparty / pulkomandy / haiku_arm_qemu_gdb
blob3b539bed4bbadf3906b840fc374766bf89ce56b7
1 # Initialisation script for GDB to help debugging the Haiku ARM port with qemu.
2 # Setup the gdbinit from reverse.put.as, then run gdb -x thisscript from the
3 # generated dir. This will set everything up for you so you can start debugging
4 # right away.
6 # Needs http://reverse.put.as/gdbinit/
8 # Set ARM mode
9 arm
10 # Show context on events
11 context-on
13 # Below are regular gdb commands (no need for that funky gdbinit script!)
15 # Connect to qemu
16 target remote localhost:1234
18 # Show readable C++ symbols in asm listings
19 set print asm-demangle on
21 # Load the bootloader symbols so we can see what we're doing
22 symbol-file objects/haiku/arm/release/system/boot/boot_loader_u-boot
24 # Set a breakpoint at our entry point, so we can watch things roll after the
25 # boring part of u-boot loading everything in RAM
26 break *0x80008008
28 continue