Skip to content
Snippets Groups Projects
Commit bab819ed authored by Austin Clements's avatar Austin Clements
Browse files

Be consistent with JOS make targets

parent 3adc4154
No related branches found
No related tags found
No related merge requests found
...@@ -145,7 +145,7 @@ QEMUOPTS = -smp 2 -hdb fs.img xv6.img ...@@ -145,7 +145,7 @@ QEMUOPTS = -smp 2 -hdb fs.img xv6.img
qemu: fs.img xv6.img qemu: fs.img xv6.img
qemu -serial mon:stdio $(QEMUOPTS) qemu -serial mon:stdio $(QEMUOPTS)
qemutty: fs.img xv6.img qemu-nox: fs.img xv6.img
qemu -nographic $(QEMUOPTS) qemu -nographic $(QEMUOPTS)
.gdbinit: .gdbinit.tmpl .gdbinit: .gdbinit.tmpl
...@@ -155,6 +155,10 @@ qemu-gdb: fs.img xv6.img .gdbinit ...@@ -155,6 +155,10 @@ qemu-gdb: fs.img xv6.img .gdbinit
@echo "*** Now run 'gdb'." 1>&2 @echo "*** Now run 'gdb'." 1>&2
qemu -serial mon:stdio $(QEMUOPTS) -s -S -p $(GDBPORT) qemu -serial mon:stdio $(QEMUOPTS) -s -S -p $(GDBPORT)
qemu-gdb-nox: fs.img xv6.img .gdbinit
@echo "*** Now run 'gdb'." 1>&2
qemu -nographic $(QEMUOPTS) -s -S -p $(GDBPORT)
# CUT HERE # CUT HERE
# prepare dist for students # prepare dist for students
# after running make dist, probably want to # after running make dist, probably want to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment