build: Don't disable the monitor when using QEMU_PIPE
Performance is about the same, it does not appear to cause issues, and older versions of QEMU don't support this flag. Change-Id: Ie45a2396c7b0d3098923244d92b15422491413a1 Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
776d5f7c22
commit
22c3fa3742
1 changed files with 2 additions and 3 deletions
5
Makefile
5
Makefile
|
@ -1165,9 +1165,8 @@ tools/%: FORCE
|
|||
QEMU_FLAGS = $(QEMU_FLAGS_$(SRCARCH)) -pidfile qemu.pid
|
||||
|
||||
ifneq ($(QEMU_PIPE),)
|
||||
# Send console output to a pipe and disable the interactive monitor,
|
||||
# used for running automated sanity tests
|
||||
QEMU_FLAGS += -serial pipe:$(QEMU_PIPE) -monitor none
|
||||
# Send console output to a pipe, used for running automated sanity tests
|
||||
QEMU_FLAGS += -serial pipe:$(QEMU_PIPE)
|
||||
else
|
||||
QEMU_FLAGS += -serial mon:stdio
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue