Work around FDT buffer overrun.

Giving more memory leaves space between the FDT and the VM so it can
load without being overwritten. This doesn't fix the problem but means
QEMU tests can run.

Bug: 117320013
Change-Id: I8ede8b868637098a92ed14530b8705a7b511650b
diff --git a/test/vm/hftest.py b/test/vm/hftest.py
index 0e85dd2..bf32296 100755
--- a/test/vm/hftest.py
+++ b/test/vm/hftest.py
@@ -21,7 +21,7 @@
     qemu_args = [
         "timeout", "--foreground", "5s",
         "./prebuilts/linux-x64/qemu/qemu-system-aarch64", "-M", "virt", "-cpu",
-        "cortex-a57", "-m", "8M", "-machine", "virtualization=true",
+        "cortex-a57", "-m", "16M", "-machine", "virtualization=true",
         "-nographic", "-nodefaults", "-serial", "stdio", "-kernel", hafnium,
         "-initrd", initrd
     ]