From 6b546a2716d501599a1c22ff382648af9de2ae47 Mon Sep 17 00:00:00 2001 From: TuxSH Date: Fri, 31 Jan 2020 23:12:36 +0000 Subject: [PATCH] thermosphere: qemu: make serial go through a socket --- thermosphere/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/thermosphere/Makefile b/thermosphere/Makefile index eb83c6f28..0e7b0c108 100644 --- a/thermosphere/Makefile +++ b/thermosphere/Makefile @@ -148,7 +148,8 @@ export QEMU := qemu-system-aarch64 QEMUFLAGS := -nographic -machine virt,virtualization=on,accel=tcg,gic-version=2 -cpu cortex-a57 -smp 4 -m 1024\ -kernel thermosphere.elf -d unimp,guest_errors -semihosting-config enable,target=native\ - -chardev stdio,id=uart -serial chardev:uart -monitor tcp:localhost:3333,server,nowait + -chardev socket,id=uart,port=4567,host=0.0.0.0,server,nowait -chardev stdio,id=test -serial chardev:uart\ + -monitor tcp:localhost:3333,server,nowait qemu: all @$(QEMU) $(QEMUFLAGS)