Skip to content

Commit

Permalink
Meta: Allow attaching GDB to the QEMU instance on the WSL2 host
Browse files Browse the repository at this point in the history
  • Loading branch information
gunnarbeutner authored and awesomekling committed Aug 7, 2021
1 parent 45f2e9f commit 2fec891
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Meta/debug-kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,20 @@ else
kernel_base=0xc0200000
fi

# FIXME: This doesn't work when running QEMU inside the WSL2 VM
if command -v wslpath >/dev/null; then
gdb_host=$(powershell.exe "(Test-Connection -ComputerName (hostname) -Count 1).IPV4Address.IPAddressToString" | tr -d '\r\n')
else
gdb_host=localhost
fi

exec $SERENITY_KERNEL_DEBUGGER \
-ex "file $(dirname "$0")/../Build/${SERENITY_ARCH:-i686}/Kernel/Prekernel/$prekernel_image" \
-ex "set confirm off" \
-ex "add-symbol-file $(dirname "$0")/../Build/${SERENITY_ARCH:-i686}/Kernel/Kernel -o $kernel_base" \
-ex "set confirm on" \
-ex "set arch $gdb_arch" \
-ex 'target remote localhost:1234' \
-ex "target remote ${gdb_host}:1234" \
-ex "source $(dirname "$0")/serenity_gdb.py" \
-ex "layout asm" \
-ex "fs next" \
Expand Down

0 comments on commit 2fec891

Please sign in to comment.