Updated script to run qemu and insight

This commit is contained in:
Bahadir Balban
2009-06-09 22:11:08 +03:00
parent ea5c0bff45
commit 056fcab125
2 changed files with 5 additions and 13 deletions

View File

@@ -1,13 +0,0 @@
cd build
#arm-none-eabi-insight &
/opt/qemu/bin/qemu-system-arm -s -kernel final.axf -nographic -m 128 -M versatilepb &
arm-none-linux-gnueabi-insight ; pkill qemu-system-arm
#arm-none-eabi-gdb ; pkill qemu-system-arm
cd ..
# TODO:
# insight works ok if gdbinit script is run from the insight
# command window. Then one needs to break at bkpt_phys_to_virt and do:
# sym start.axf
# Then continue execution to see all symbols. This must be done automatic.

5
tools/run-qemu-insight Executable file
View File

@@ -0,0 +1,5 @@
cd build
qemu-system-arm -s -kernel final.axf -nographic -m 128 -M versatilepb &
arm-none-insight ; pkill qemu-system-arm
cd ..