aboutsummaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/patch-vl.c-serial
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/qemu-devel/files/patch-vl.c-serial')
-rw-r--r--emulators/qemu-devel/files/patch-vl.c-serial17
1 files changed, 0 insertions, 17 deletions
diff --git a/emulators/qemu-devel/files/patch-vl.c-serial b/emulators/qemu-devel/files/patch-vl.c-serial
deleted file mode 100644
index 76c290e28abb..000000000000
--- a/emulators/qemu-devel/files/patch-vl.c-serial
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: qemu/vl.c
-@@ -1606,10 +1606,13 @@
- cfsetospeed(&tty, spd);
-
- tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
-- |INLCR|IGNCR|ICRNL|IXON);
-- tty.c_oflag |= OPOST;
-+ |INLCR|IGNCR|ICRNL|IXON|IMAXBEL);
-+ tty.c_oflag &= ~OPOST; /* Don't do any output processing! */
- tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
- tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS|CSTOPB);
-+#ifdef __FreeBSD__
-+ cfmakeraw(&tty);
-+#endif
- switch(data_bits) {
- default:
- case 8: