Meta: Update AArch64 kernel base address in the gdb kernel debug script

The correct value for now is 0, since the AArch64 linker script uses
a hard-coded memory layout, so the offset is already automatically
applied.
This commit is contained in:
Idan Horowitz 2023-04-01 22:30:47 +03:00
parent 8bb0be7d4f
commit b8437a03e7
Notes: sideshowbarker 2024-07-16 22:05:19 +09:00

View file

@ -38,7 +38,7 @@ if [ "$SERENITY_ARCH" = "x86_64" ]; then
elif [ "$SERENITY_ARCH" = "aarch64" ]; then
gdb_arch=aarch64:armv8-r
prekernel_image=Prekernel
kernel_base=0xc0000000 # FIXME
kernel_base=0x0
fi
# FIXME: This doesn't work when running QEMU inside the WSL2 VM