From: Waldemar Kozaczuk <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
scripts/run.py: do not hardcode memory size and cpu count for aarch64 Signed-off-by: Waldemar Kozaczuk <[email protected]> --- diff --git a/scripts/run.py b/scripts/run.py --- a/scripts/run.py +++ b/scripts/run.py @@ -106,14 +106,9 @@ def start_osv_qemu(options): else: aio = 'cache=none,aio=native' - if options.arch == 'aarch64': - args = [ - "-m", "1G", - "-smp", "2"] - else: - args = [ - "-m", options.memsize, - "-smp", options.vcpus] + args = [ + "-m", options.memsize, + "-smp", options.vcpus] if not options.novnc and options.hypervisor != 'qemu_microvm' and options.arch == 'x86_64': args += [ -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/000000000000a37ad605aa5a0c85%40google.com.
