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:
parent
8e54196355
commit
41f16c2183
2
Makefile
2
Makefile
|
@ -216,7 +216,7 @@ qemu: fs.img xv6.img
|
||||||
$(QEMU) -serial mon:stdio $(QEMUOPTS)
|
$(QEMU) -serial mon:stdio $(QEMUOPTS)
|
||||||
|
|
||||||
qemu-memfs: xv6memfs.img
|
qemu-memfs: xv6memfs.img
|
||||||
$(QEMU) xv6memfs.img -smp $(CPUS)
|
$(QEMU) xv6memfs.img -smp $(CPUS) -m 256
|
||||||
|
|
||||||
qemu-nox: fs.img xv6.img
|
qemu-nox: fs.img xv6.img
|
||||||
$(QEMU) -nographic $(QEMUOPTS)
|
$(QEMU) -nographic $(QEMUOPTS)
|
||||||
|
|
Loading…
Reference in a new issue