Increase VM memory when running qemu-memfs

Presumably because of the pre-loaded file system, the default RAM is
insufficient when running kernelmemfs
This commit is contained in:
Austin Clements 2014-10-03 09:44:26 -04:00
parent 8e54196355
commit 41f16c2183

View file

@ -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)