From: Austin Clements Date: Fri, 3 Oct 2014 13:44:26 +0000 (-0400) Subject: Increase VM memory when running qemu-memfs X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=41f16c21832f120bba96fe1d4ba0079aaf34c11a;p=cs3210-lab0.git Increase VM memory when running qemu-memfs Presumably because of the pre-loaded file system, the default RAM is insufficient when running kernelmemfs --- diff --git a/Makefile b/Makefile index f1146d9..01ca1ff 100644 --- a/Makefile +++ b/Makefile @@ -216,7 +216,7 @@ qemu: fs.img xv6.img $(QEMU) -serial mon:stdio $(QEMUOPTS) qemu-memfs: xv6memfs.img - $(QEMU) xv6memfs.img -smp $(CPUS) + $(QEMU) xv6memfs.img -smp $(CPUS) -m 256 qemu-nox: fs.img xv6.img $(QEMU) -nographic $(QEMUOPTS)