summaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/patch-qemu-char.c
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2019-02-28 01:52:17 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2019-02-28 01:52:17 +0000
commit00081d8d8eb2bf818abd0b0be5a831ef4fc9cabb (patch)
tree787aa9ef36964c3d600c52f1f16c77519374bc55 /emulators/qemu-devel/files/patch-qemu-char.c
parentemulators/rpcs3: fix --version output after r494119 (diff)
emulators/qemu-devel: Update version 2.6.0=>3.1.0
PR: 229324 Reported by: bcran Relnotes: https://www.qemu.org/2018/12/12/qemu-3-1-0/
Diffstat (limited to 'emulators/qemu-devel/files/patch-qemu-char.c')
-rw-r--r--emulators/qemu-devel/files/patch-qemu-char.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/emulators/qemu-devel/files/patch-qemu-char.c b/emulators/qemu-devel/files/patch-qemu-char.c
deleted file mode 100644
index 40a9b529f3b9..000000000000
--- a/emulators/qemu-devel/files/patch-qemu-char.c
+++ /dev/null
@@ -1,19 +0,0 @@
---- qemu-char.c.orig 2015-12-16 00:54:18 UTC
-+++ qemu-char.c
-@@ -1507,10 +1507,14 @@ static void tty_serial_init(int fd, int
- 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: