summary refs log tree commit diff
path: root/vm/sys/net/Makefile
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2022-05-07 16:26:20 +0000
committerAlyssa Ross <hi@alyssa.is>2022-05-07 18:13:53 +0000
commit5ff3535ed57552a226fd47f02411cdd890e9e864 (patch)
tree33be4b40d0a390b943c7fc8a93c9f21a58ec5dad /vm/sys/net/Makefile
parentfeed359621e15eb01f98d06358eb4a823da6f5df (diff)
downloadspectrum-5ff3535ed57552a226fd47f02411cdd890e9e864.tar
spectrum-5ff3535ed57552a226fd47f02411cdd890e9e864.tar.gz
spectrum-5ff3535ed57552a226fd47f02411cdd890e9e864.tar.bz2
spectrum-5ff3535ed57552a226fd47f02411cdd890e9e864.tar.lz
spectrum-5ff3535ed57552a226fd47f02411cdd890e9e864.tar.xz
spectrum-5ff3535ed57552a226fd47f02411cdd890e9e864.tar.zst
spectrum-5ff3535ed57552a226fd47f02411cdd890e9e864.zip
vm: show the virtio console by default
When I set the virtio console to go to a new PTY by default, it was
because I was working on / testing patches for terminal emulators to
get them to attach to PTYs and send resize events.  Now that I'm not
doing that so much, let's show the console intended for VM output by
default, rather than requiring running another process to connect to
it.
Diffstat (limited to 'vm/sys/net/Makefile')
-rw-r--r--vm/sys/net/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/sys/net/Makefile b/vm/sys/net/Makefile
index 3eac98d..9dfa7c8 100644
--- a/vm/sys/net/Makefile
+++ b/vm/sys/net/Makefile
@@ -118,8 +118,8 @@ run-cloud-hypervisor: build/host/data/netvm/rootfs.ext4
 	    --net tap=tap0 tap=tap1,mac=0A:B3:EC:80:00:00 \
 	    --kernel $(KERNEL) \
 	    --cmdline "console=ttyS0 root=/dev/vda" \
-	    --console pty \
-	    --serial tty
+	    --console tty \
+	    --serial pty
 .PHONY: run-cloud-hypervisor
 
 run: run-$(VMM)