All of lore.kernel.org
 help / color / mirror / Atom feed
* SeaBIOS update on master?
@ 2015-02-11  8:38 Jan Beulich
  2015-02-11 10:56 ` Ian Campbell
  0 siblings, 1 reply; 5+ messages in thread
From: Jan Beulich @ 2015-02-11  8:38 UTC (permalink / raw)
  To: Ian Campbell; +Cc: xen-devel

Ian,

I notice there is 1.7.5.2 available upstream - are there plans for us
to update, or are we going to wait for 1.7.6 or 1.8 or whatever is
going to be next? (I ask without having checked whether there are
any fixes that would specifically concern us.)

Jan

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: SeaBIOS update on master?
  2015-02-11  8:38 SeaBIOS update on master? Jan Beulich
@ 2015-02-11 10:56 ` Ian Campbell
  2015-02-19  8:43   ` Ian Campbell
  0 siblings, 1 reply; 5+ messages in thread
From: Ian Campbell @ 2015-02-11 10:56 UTC (permalink / raw)
  To: Jan Beulich; +Cc: Ian Campbell, xen-devel

On Wed, 2015-02-11 at 08:38 +0000, Jan Beulich wrote:
> Ian,
> 
> I notice there is 1.7.5.2 available upstream - are there plans for us
> to update, or are we going to wait for 1.7.6 or 1.8 or whatever is
> going to be next? (I ask without having checked whether there are
> any fixes that would specifically concern us.)

Thanks for the reminder.

Normally want to track their releases during the dev cycle (when I
remember) but a new release is imminent, so I think rather than bumping
twice I may as well wait for it (whatever version it ends up being).

I haven't looked for specific fixes either.

Ian.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: SeaBIOS update on master?
  2015-02-11 10:56 ` Ian Campbell
@ 2015-02-19  8:43   ` Ian Campbell
  2015-02-19  9:49     ` Wei Liu
  0 siblings, 1 reply; 5+ messages in thread
From: Ian Campbell @ 2015-02-19  8:43 UTC (permalink / raw)
  To: Jan Beulich, Ian Jackson, Wei Liu; +Cc: xen-devel

On Wed, 2015-02-11 at 10:56 +0000, Ian Campbell wrote:
> On Wed, 2015-02-11 at 08:38 +0000, Jan Beulich wrote:
> > Ian,
> > 
> > I notice there is 1.7.5.2 available upstream - are there plans for us
> > to update, or are we going to wait for 1.7.6 or 1.8 or whatever is
> > going to be next? (I ask without having checked whether there are
> > any fixes that would specifically concern us.)
> 
> Thanks for the reminder.
> 
> Normally want to track their releases during the dev cycle (when I
> remember) but a new release is imminent, so I think rather than bumping
> twice I may as well wait for it (whatever version it ends up being).

1.8.0 has just been released[0]. osstest flight 34755 is currently
testing rel-1.8.0~4 which is one new commit over the current tested
baseline, but that commit and all the ones between it and rel-1.8.0 are
ones which don't affect the actual functionality (most are docs, one is
against the checkstack.pl tool and doesn't seem relevant since we aren't
hitting the underlying issue).

So I think we are good to update, see patch below.

Ian.

[0] http://www.seabios.org/pipermail/seabios/2015-February/008688.html

------

>From d4b9f2a1eaf1fb46a77a0534f4a86fa514cb3454 Mon Sep 17 00:00:00 2001
From: Ian Campbell <ian.campbell@citrix.com>
Date: Thu, 19 Feb 2015 08:37:44 +0000
Subject: [PATCH] tools: update to seabios rel-1.8.0

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
 Config.mk |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Config.mk b/Config.mk
index d12ad91..27b0997 100644
--- a/Config.mk
+++ b/Config.mk
@@ -253,9 +253,9 @@ SEABIOS_UPSTREAM_URL ?= git://xenbits.xen.org/seabios.git
 endif
 OVMF_UPSTREAM_REVISION ?= 447d264115c476142f884af0be287622cd244423
 QEMU_UPSTREAM_REVISION ?= master
-SEABIOS_UPSTREAM_REVISION ?= rel-1.7.5
-# Thu May 22 16:59:16 2014 -0400
-# python3 fixes for vgabios and csm builds.
+SEABIOS_UPSTREAM_REVISION ?= rel-1.8.0
+# Wed Feb 18 12:49:59 2015 -0500
+# docs: Note v1.8.0 release
 
 ETHERBOOT_NICS ?= rtl8139 8086100e
 
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: SeaBIOS update on master?
  2015-02-19  8:43   ` Ian Campbell
@ 2015-02-19  9:49     ` Wei Liu
  2015-02-19 17:20       ` Ian Campbell
  0 siblings, 1 reply; 5+ messages in thread
From: Wei Liu @ 2015-02-19  9:49 UTC (permalink / raw)
  To: Ian Campbell; +Cc: Wei Liu, Ian Jackson, Jan Beulich, xen-devel

On Thu, Feb 19, 2015 at 08:43:05AM +0000, Ian Campbell wrote:
> On Wed, 2015-02-11 at 10:56 +0000, Ian Campbell wrote:
> > On Wed, 2015-02-11 at 08:38 +0000, Jan Beulich wrote:
> > > Ian,
> > > 
> > > I notice there is 1.7.5.2 available upstream - are there plans for us
> > > to update, or are we going to wait for 1.7.6 or 1.8 or whatever is
> > > going to be next? (I ask without having checked whether there are
> > > any fixes that would specifically concern us.)
> > 
> > Thanks for the reminder.
> > 
> > Normally want to track their releases during the dev cycle (when I
> > remember) but a new release is imminent, so I think rather than bumping
> > twice I may as well wait for it (whatever version it ends up being).
> 
> 1.8.0 has just been released[0]. osstest flight 34755 is currently
> testing rel-1.8.0~4 which is one new commit over the current tested
> baseline, but that commit and all the ones between it and rel-1.8.0 are
> ones which don't affect the actual functionality (most are docs, one is
> against the checkstack.pl tool and doesn't seem relevant since we aren't
> hitting the underlying issue).
> 
> So I think we are good to update, see patch below.
> 
> Ian.
> 
> [0] http://www.seabios.org/pipermail/seabios/2015-February/008688.html
> 
> ------
> 
> >From d4b9f2a1eaf1fb46a77a0534f4a86fa514cb3454 Mon Sep 17 00:00:00 2001
> From: Ian Campbell <ian.campbell@citrix.com>
> Date: Thu, 19 Feb 2015 08:37:44 +0000
> Subject: [PATCH] tools: update to seabios rel-1.8.0
> 
> Signed-off-by: Ian Campbell <ian.campbell@citrix.com>

Acked-by: Wei Liu <wei.liu2@citrix.com>

> ---
>  Config.mk |    6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/Config.mk b/Config.mk
> index d12ad91..27b0997 100644
> --- a/Config.mk
> +++ b/Config.mk
> @@ -253,9 +253,9 @@ SEABIOS_UPSTREAM_URL ?= git://xenbits.xen.org/seabios.git
>  endif
>  OVMF_UPSTREAM_REVISION ?= 447d264115c476142f884af0be287622cd244423
>  QEMU_UPSTREAM_REVISION ?= master
> -SEABIOS_UPSTREAM_REVISION ?= rel-1.7.5
> -# Thu May 22 16:59:16 2014 -0400
> -# python3 fixes for vgabios and csm builds.
> +SEABIOS_UPSTREAM_REVISION ?= rel-1.8.0
> +# Wed Feb 18 12:49:59 2015 -0500
> +# docs: Note v1.8.0 release
>  
>  ETHERBOOT_NICS ?= rtl8139 8086100e
>  
> -- 
> 1.7.10.4
> 
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: SeaBIOS update on master?
  2015-02-19  9:49     ` Wei Liu
@ 2015-02-19 17:20       ` Ian Campbell
  0 siblings, 0 replies; 5+ messages in thread
From: Ian Campbell @ 2015-02-19 17:20 UTC (permalink / raw)
  To: Wei Liu; +Cc: xen-devel, Ian Jackson, Jan Beulich

On Thu, 2015-02-19 at 09:49 +0000, Wei Liu wrote:
> On Thu, Feb 19, 2015 at 08:43:05AM +0000, Ian Campbell wrote:
> > Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
> 
> Acked-by: Wei Liu <wei.liu2@citrix.com>

Thanks, applied.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-02-19 17:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-11  8:38 SeaBIOS update on master? Jan Beulich
2015-02-11 10:56 ` Ian Campbell
2015-02-19  8:43   ` Ian Campbell
2015-02-19  9:49     ` Wei Liu
2015-02-19 17:20       ` Ian Campbell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.