aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/bhyve/consport.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/bhyve/consport.c')
-rw-r--r--usr.sbin/bhyve/consport.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/bhyve/consport.c b/usr.sbin/bhyve/consport.c
index b1defcd4b8c6..634521985541 100644
--- a/usr.sbin/bhyve/consport.c
+++ b/usr.sbin/bhyve/consport.c
@@ -51,6 +51,7 @@ __FBSDID("$FreeBSD$");
#include "inout.h"
#include "pci_lpc.h"
+#include "debug.h"
#define BVM_CONSOLE_PORT 0x220
#define BVM_CONS_SIG ('b' << 8 | 'v')
@@ -70,6 +71,7 @@ ttyopen(void)
cfmakeraw(&tio_new);
tcsetattr(STDIN_FILENO, TCSANOW, &tio_new);
+ raw_stdio = 1;
atexit(ttyclose);
}