From 206d0b4497ab5b8350f62805e51b19c5f6fd3a99 Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Wed, 29 Jun 2016 13:33:05 -0700 Subject: [PATCH] Revert "qemu: pass -serial stdio instead of -serial mon:stdio" This reverts commit e69762137102ae69c3d35c7c6515016c6d2f02a3. It is causing problems dependeing on what version of QEMU is used, with the SDK QEMU the terminal has to be 'reset' after running (the opposite behavior of the Nios 2 build). Change-Id: I6756eb0cf8edf4faa36f3a5e1cf0e456f146e1d8 Signed-off-by: Andrew Boie --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 44c0713dab3..47541760965 100644 --- a/Makefile +++ b/Makefile @@ -1167,7 +1167,7 @@ ifneq ($(QEMU_PIPE),) # Send console output to a pipe, used for running automated sanity tests QEMU_FLAGS += -serial pipe:$(QEMU_PIPE) else - QEMU_FLAGS += -serial stdio + QEMU_FLAGS += -serial mon:stdio endif endif