[PATCH] Additional serial and parallel device
Stefan Weil <Stefan.Weil <at> weilnetz.de>
2006-09-01 17:16:13 GMT
Hello,
well, the subject line is not exactly true: my patch does not
add a new device, but allows to disable a device.
"-serial none" disables the default serial device,
"-parallel none" disables the default parallel device.
It is also possible to skip a device:
"-serial none -serial vc" adds serial 1 without serial 0.
Many new PC platforms do not provide a serial device - now
QEMU can emulate these platforms better
Regards
Stefan
Index: vl.c
===================================================================
RCS file: /sources/qemu/qemu/vl.c,v
retrieving revision 1.210
diff -u -b -B -r1.210 vl.c
--- vl.c 19 Aug 2006 12:37:52 -0000 1.210
+++ vl.c 1 Sep 2006 15:13:30 -0000
<at> <at> -6844,27 +6844,29 <at> <at>
monitor_init(monitor_hd, !nographic);
for(i = 0; i < MAX_SERIAL_PORTS; i++) {
(Continue reading)