[arch][arm64] add support for 64k pages

Already worked, just needed to set up the address space size and create
a new project.
This commit is contained in:
Travis Geiselbrecht
2025-08-31 21:48:09 -07:00
parent fff0f2a740
commit c48cfcb5d0
3 changed files with 22 additions and 2 deletions

View File

@@ -105,7 +105,9 @@ if [ $DO_64BIT == 1 ]; then
elif [ $DO_VIRT == 1 ]; then
MACHINE+=",virtualization=on"
fi
if [ $PAGE_SIZE == 16384 ]; then
if [ $PAGE_SIZE == 65536 ]; then
_PROJECT="qemu-virt-arm64-64k-test"
elif [ $PAGE_SIZE == 16384 ]; then
_PROJECT="qemu-virt-arm64-16k-test"
else
_PROJECT="qemu-virt-arm64-test"