A simple, zero-configuration script to quickly boot FreeBSD ISO images using QEMU

Add support for high memory configuration in QEMU for aarch64 architecture

+6
+3
src/subcommands/start.ts
··· 21 21 ..._.compact( 22 22 Deno.build.os === "darwin" ? ["-accel", "hvf"] : ["-enable-kvm"], 23 23 ), 24 + ..._.compact([ 25 + Deno.build.arch === "aarch64" && ["-machine", "virt,highmem=on"], 26 + ]), 24 27 "-cpu", 25 28 vm.cpu, 26 29 "-m",
+3
src/utils.ts
··· 111 111 ..._.compact( 112 112 Deno.build.os === "darwin" ? ["-accel", "hvf"] : ["-enable-kvm"], 113 113 ), 114 + ..._.compact([ 115 + Deno.build.arch === "aarch64" && ["-machine", "virt,highmem=on"], 116 + ]), 114 117 "-cpu", 115 118 options.cpu, 116 119 "-m",