[tooling] Remove old GDB workarounds

GDB works far better now with QEMU's `-S` flag. No longer does it
complain about changing the target from 32 to 64 bits. Get rid of the
old `waiting` loop and `sleep` call in the GDB config for the kernel.

Tags: debugging
This commit is contained in:
Justin C. Miller
2020-05-24 19:50:45 -07:00
parent 774f6fc334
commit cc9cde9bfe
3 changed files with 8 additions and 8 deletions

View File

@@ -24,8 +24,5 @@ class PrintStackCommand(gdb.Command):
PrintStackCommand()
import time
time.sleep(3.5)
gdb.execute("target remote :1234")
gdb.execute("set waiting = false")
gdb.execute("display/i $rip")