summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAustin Clements <[email protected]>2009-09-20 23:07:59 -0400
committerAustin Clements <[email protected]>2009-09-20 23:07:59 -0400
commit01396b3a8787d3b6e694675d3f28ddbc90f6b832 (patch)
tree85218fd3a1e6085f4919b9ed87ef5bb4838e6429 /Makefile
parentccd980bedfcff49ec75cfda4e631b54f0a69bf82 (diff)
downloadxv6-labs-01396b3a8787d3b6e694675d3f28ddbc90f6b832.tar.gz
xv6-labs-01396b3a8787d3b6e694675d3f28ddbc90f6b832.tar.bz2
xv6-labs-01396b3a8787d3b6e694675d3f28ddbc90f6b832.zip
xv6 runs the console on the serial port, not the parallel port
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1e73ee1..2e1b927 100644
--- a/Makefile
+++ b/Makefile
@@ -143,7 +143,7 @@ GDBPORT = $(shell expr `id -u` % 5000 + 25000)
QEMUOPTS = -smp 2 -hdb fs.img xv6.img
qemu: fs.img xv6.img
- qemu -parallel mon:stdio $(QEMUOPTS)
+ qemu -serial mon:stdio $(QEMUOPTS)
qemutty: fs.img xv6.img
qemu -nographic $(QEMUOPTS)
@@ -153,7 +153,7 @@ qemutty: fs.img xv6.img
qemu-gdb: fs.img xv6.img .gdbinit
@echo "*** Now run 'gdb'." 1>&2
- qemu -parallel mon:stdio $(QEMUOPTS) -s -S -p $(GDBPORT)
+ qemu -serial mon:stdio $(QEMUOPTS) -s -S -p $(GDBPORT)
# CUT HERE
# prepare dist for students