summary refs log tree commit diff
path: root/host/start-vm/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'host/start-vm/lib.rs')
-rw-r--r--host/start-vm/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/start-vm/lib.rs b/host/start-vm/lib.rs
index 32ba34d..5c07575 100644
--- a/host/start-vm/lib.rs
+++ b/host/start-vm/lib.rs
@@ -61,7 +61,7 @@ pub fn vm_command(dir: &Path, api_socket_fd: RawFd) -> Result<Command, String> {
     let mut command = Command::new("cloud-hypervisor");
     command.args(["--api-socket", &format!("fd={api_socket_fd}")]);
     command.args(["--cmdline", "console=ttyS0 root=PARTLABEL=root"]);
-    command.args(["--memory", "size=128M,shared=on"]);
+    command.args(["--memory", "size=256M,shared=on"]);
     command.args(["--console", "pty"]);
     command.arg("--kernel");
     command.arg(config_dir.join("vmlinux"));