Re: [SeaBIOS] [PATCH] serial console conflicts with serial debugging

2017-11-03 Thread Stephen Douthit
On 11/02/2017 05:02 AM, Gerd Hoffmann wrote: > Signed-off-by: Gerd Hoffmann > --- > src/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/src/Kconfig b/src/Kconfig > index 4870a3e7b7..985594c51b 100644 > --- a/src/Kconfig > +++ b/src/Kconfig > @@ -553,6

Re: [SeaBIOS] [PATCH seabios 3/3] kvmtool: support larger virtio queues

2017-11-03 Thread Jean-Philippe Brucker
On 03/11/17 15:34, Gerd Hoffmann wrote: > On Fri, 2017-11-03 at 13:49 +, Jean-Philippe Brucker wrote: >> On 02/11/17 15:50, Gerd Hoffmann wrote: >>> Queues have 256 entries on kvmtool, support that.  Needs more >>> memory for >>> virtqueues now.  But with the move to 32bit drivers for virtio

Re: [SeaBIOS] [PATCH seabios 3/3] kvmtool: support larger virtio queues

2017-11-03 Thread Jean-Philippe Brucker
On 02/11/17 15:50, Gerd Hoffmann wrote: > Queues have 256 entries on kvmtool, support that. Needs more memory for > virtqueues now. But with the move to 32bit drivers for virtio this > should not be much of an issue any more. > > Known problems (probably kvmtool bugs): > * Must bump to 260

Re: [SeaBIOS] seabios serial console vs. sgabios

2017-11-03 Thread Kevin O'Connor
On Thu, Nov 02, 2017 at 05:04:20PM +0100, Gerd Hoffmann wrote: > Hi, > > One problem we have with the serial console support in seabios and > sgabios: It can happen that both are activated. We'll go fix that in > qemu, but that'll work for new qemu versions only, not for the old > already

Re: [SeaBIOS] [Qemu-devel] seabios serial console vs. sgabios

2017-11-03 Thread Gerd Hoffmann
Hi, > > Hmm, why?  The user asked for a serial console.  Whenever that is > > provided by seabios builtin support or the sgabios rom doesn't > > really > > matter, no? > > Surely it has ABI implications for the guest if we stop putting the > sgabios option ROM into memory - changing layout of

Re: [SeaBIOS] [Qemu-devel] seabios serial console vs. sgabios

2017-11-03 Thread Daniel P. Berrange
On Fri, Nov 03, 2017 at 07:49:03AM +0100, Gerd Hoffmann wrote: > On Thu, 2017-11-02 at 16:11 +, Daniel P. Berrange wrote: > > On Thu, Nov 02, 2017 at 05:04:20PM +0100, Gerd Hoffmann wrote: > > >   Hi, > > > > > > One problem we have with the serial console support in seabios and > > >

[SeaBIOS] [PATCH] Ignore sgabios rom in case sercon is enabled.

2017-11-03 Thread Gerd Hoffmann
We don't want them both be active. Signed-off-by: Gerd Hoffmann --- src/optionroms.c | 5 + 1 file changed, 5 insertions(+) diff --git a/src/optionroms.c b/src/optionroms.c index 092393a56c..a5ecd4cd11 100644 --- a/src/optionroms.c +++ b/src/optionroms.c @@ -193,6

[SeaBIOS] [PATCH] Disable ScreenAndDebug in case both serial console and serial debug are active

2017-11-03 Thread Gerd Hoffmann
Signed-off-by: Gerd Hoffmann --- src/sercon.c | 4 1 file changed, 4 insertions(+) diff --git a/src/sercon.c b/src/sercon.c index 0b7722ec08..72ebf82452 100644 --- a/src/sercon.c +++ b/src/sercon.c @@ -523,6 +523,10 @@ void sercon_setup(void) return;

Re: [SeaBIOS] [Qemu-devel] seabios serial console vs. sgabios

2017-11-03 Thread Gerd Hoffmann
On Thu, 2017-11-02 at 16:11 +, Daniel P. Berrange wrote: > On Thu, Nov 02, 2017 at 05:04:20PM +0100, Gerd Hoffmann wrote: > >   Hi, > > > > One problem we have with the serial console support in seabios and > > sgabios:  It can happen that both are activated.  We'll go fix that > > in > >