mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
d4e5177000
release announcement is here: http://lists.gnu.org/archive/html/qemu-devel/2009-12/msg02151.html Quoting from pkg-message: - kqemu is no longer supported in qemu upstream after the 0.11 branch was created, which means also not in this version. (Linux has moved on to kvm now for qemu(-like) virtualization needs, so if you want qemu to go faster and don't want to switch to virtualbox or stick to the older emulators/qemu port which is at 0.11.1 atm and as such still supports kqemu you should help getting the FreeBSD kvm port updated and completed: http://wiki.freebsd.org/FabioChecconi/PortingLinuxKVMToFreeBSD )
18 lines
552 B
Plaintext
18 lines
552 B
Plaintext
Index: qemu/qemu-char.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:
|