summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAustin Clements <[email protected]>2014-10-03 09:44:26 -0400
committerAustin Clements <[email protected]>2014-10-03 09:44:26 -0400
commit41f16c21832f120bba96fe1d4ba0079aaf34c11a (patch)
treed1d7844bf3790be4c392c6f47f2ec3cd661b146f /Makefile
parent8e54196355cb3a4218471f9efa96eee404fde09b (diff)
downloadxv6-labs-41f16c21832f120bba96fe1d4ba0079aaf34c11a.tar.gz
xv6-labs-41f16c21832f120bba96fe1d4ba0079aaf34c11a.tar.bz2
xv6-labs-41f16c21832f120bba96fe1d4ba0079aaf34c11a.zip
Increase VM memory when running qemu-memfs
Presumably because of the pre-loaded file system, the default RAM is insufficient when running kernelmemfs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)