From b8437a03e74eee92200fb81809ff80c95b057468 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Sat, 1 Apr 2023 22:30:47 +0300 Subject: [PATCH] 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. --- Meta/debug-kernel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/debug-kernel.sh b/Meta/debug-kernel.sh index 3393673b29d..6fc94adf422 100755 --- a/Meta/debug-kernel.sh +++ b/Meta/debug-kernel.sh @@ -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