diff options
author | Austin Clements <[email protected]> | 2009-09-30 22:09:48 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2009-09-30 22:09:48 -0400 |
commit | bab819ed8d77abe65ea16945f42e76b3d4d1ff8b (patch) | |
tree | eb0564e74e1b93ede7e2a92e1cf8a46d2468deb5 | |
parent | 3adc415471c8b53ef024cde0846c206372cbf04e (diff) | |
download | xv6-labs-bab819ed8d77abe65ea16945f42e76b3d4d1ff8b.tar.gz xv6-labs-bab819ed8d77abe65ea16945f42e76b3d4d1ff8b.tar.bz2 xv6-labs-bab819ed8d77abe65ea16945f42e76b3d4d1ff8b.zip |
Be consistent with JOS make targets
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -145,7 +145,7 @@ QEMUOPTS = -smp 2 -hdb fs.img xv6.img qemu: fs.img xv6.img qemu -serial mon:stdio $(QEMUOPTS) -qemutty: fs.img xv6.img +qemu-nox: fs.img xv6.img qemu -nographic $(QEMUOPTS) .gdbinit: .gdbinit.tmpl @@ -155,6 +155,10 @@ qemu-gdb: fs.img xv6.img .gdbinit @echo "*** Now run 'gdb'." 1>&2 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 # prepare dist for students # after running make dist, probably want to |