From 9e2d0af5ab8e909f553200a0550ad1736c3a6767 Mon Sep 17 00:00:00 2001 From: Kent Holloway Date: Mon, 6 Oct 2014 10:11:39 -0500 Subject: [PATCH] Reverting previous change, including M on memory line to be explicit about what we are requesting --- builder/qemu/step_run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/qemu/step_run.go b/builder/qemu/step_run.go index 563237c96..82a98dbba 100644 --- a/builder/qemu/step_run.go +++ b/builder/qemu/step_run.go @@ -84,7 +84,7 @@ func getCommandArgs(bootDrive string, state multistep.StateBag) ([]string, error defaultArgs["-drive"] = fmt.Sprintf("file=%s,if=%s", imgPath, config.DiskInterface) defaultArgs["-cdrom"] = isoPath defaultArgs["-boot"] = bootDrive - defaultArgs["-m"] = "512" + defaultArgs["-m"] = "512M" defaultArgs["-vnc"] = vnc // Append the accelerator to the machine type if it is specified