Re: [Qemu-devel] [PATCH] chardev: add baud parameter for serial host device

2013-06-15 Thread Eric Blake
On 06/15/2013 04:25 PM, Peter Wu wrote: > On Saturday 15 June 2013 16:14:23 Eric Blake wrote: >> On 06/08/2013 10:49 PM, Peter Wu wrote: >>> When QEMU starts, it always changes the serial port parameters including >>> baud rate. This confused my guest which thought it was outputting at 9600 >>> bau

Re: [Qemu-devel] [PATCH] chardev: add baud parameter for serial host device

2013-06-15 Thread Peter Wu
On Saturday 15 June 2013 16:14:23 Eric Blake wrote: > On 06/08/2013 10:49 PM, Peter Wu wrote: > > When QEMU starts, it always changes the serial port parameters including > > baud rate. This confused my guest which thought it was outputting at 9600 > > baud while it was in fact changed to 115200. >

Re: [Qemu-devel] [PATCH] chardev: add baud parameter for serial host device

2013-06-15 Thread Eric Blake
On 06/08/2013 10:49 PM, Peter Wu wrote: > When QEMU starts, it always changes the serial port parameters including baud > rate. This confused my guest which thought it was outputting at 9600 baud > while > it was in fact changed to 115200. > > After this patch, I can use `-serial /dev/ttyS0,baud=

Re: [Qemu-devel] [PATCH] chardev: add baud parameter for serial host device

2013-06-10 Thread Peter Wu
On Monday 10 June 2013 15:28:32 Peter Wu wrote: > On Monday 10 June 2013 14:58:07 Gerd Hoffmann wrote: > > On 06/10/13 10:42, Peter Wu wrote: > > > On Monday 10 June 2013 07:56:01 Gerd Hoffmann wrote: > > >> On 06/08/13 23:49, Peter Wu wrote: > > >>> When QEMU starts, it always changes the serial p

Re: [Qemu-devel] [PATCH] chardev: add baud parameter for serial host device

2013-06-10 Thread Peter Wu
On Monday 10 June 2013 14:58:07 Gerd Hoffmann wrote: > On 06/10/13 10:42, Peter Wu wrote: > > On Monday 10 June 2013 07:56:01 Gerd Hoffmann wrote: > >> On 06/08/13 23:49, Peter Wu wrote: > >>> When QEMU starts, it always changes the serial port parameters including > >>> baud rate. This confused my

Re: [Qemu-devel] [PATCH] chardev: add baud parameter for serial host device

2013-06-10 Thread Andreas Färber
Am 10.06.2013 14:58, schrieb Gerd Hoffmann: > On 06/10/13 10:42, Peter Wu wrote: >> On Monday 10 June 2013 07:56:01 Gerd Hoffmann wrote: >>> On 06/08/13 23:49, Peter Wu wrote: When QEMU starts, it always changes the serial port parameters including baud rate. This confused my guest which

Re: [Qemu-devel] [PATCH] chardev: add baud parameter for serial host device

2013-06-10 Thread Gerd Hoffmann
On 06/10/13 10:42, Peter Wu wrote: > On Monday 10 June 2013 07:56:01 Gerd Hoffmann wrote: >> On 06/08/13 23:49, Peter Wu wrote: >>> When QEMU starts, it always changes the serial port parameters including >>> baud rate. This confused my guest which thought it was outputting at 9600 >>> baud while i

Re: [Qemu-devel] [PATCH] chardev: add baud parameter for serial host device

2013-06-10 Thread Peter Wu
On Monday 10 June 2013 07:56:01 Gerd Hoffmann wrote: > On 06/08/13 23:49, Peter Wu wrote: > > When QEMU starts, it always changes the serial port parameters including > > baud rate. This confused my guest which thought it was outputting at 9600 > > baud while it was in fact changed to 115200. > > >

Re: [Qemu-devel] [PATCH] chardev: add baud parameter for serial host device

2013-06-09 Thread Gerd Hoffmann
On 06/08/13 23:49, Peter Wu wrote: > When QEMU starts, it always changes the serial port parameters including baud > rate. This confused my guest which thought it was outputting at 9600 baud > while > it was in fact changed to 115200. > > After this patch, I can use `-serial /dev/ttyS0,baud=9600`

[Qemu-devel] [PATCH] chardev: add baud parameter for serial host device

2013-06-08 Thread Peter Wu
When QEMU starts, it always changes the serial port parameters including baud rate. This confused my guest which thought it was outputting at 9600 baud while it was in fact changed to 115200. After this patch, I can use `-serial /dev/ttyS0,baud=9600` to override the default baud rate of 115200. Do