All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used
@ 2016-08-12 22:30 Alistair Francis
  2016-08-12 22:30 ` [Buildroot] [PATCH 2/2] xen: Bump to version 4.7 Alistair Francis
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Alistair Francis @ 2016-08-12 22:30 UTC (permalink / raw)
  To: buildroot

To avoid Xen build issues ensure that host Python 2 is used.

Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
---
 package/xen/xen.mk | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package/xen/xen.mk b/package/xen/xen.mk
index 759667a..e2abf25 100644
--- a/package/xen/xen.mk
+++ b/package/xen/xen.mk
@@ -8,6 +8,7 @@ XEN_VERSION = 4.6.0
 XEN_SITE = http://bits.xensource.com/oss-xen/release/$(XEN_VERSION)
 XEN_LICENSE = GPLv2
 XEN_LICENSE_FILES = COPYING
+XEN_DEPENDENCIES = host-python
 
 # Calculate XEN_ARCH
 ifeq ($(ARCH),aarch64)
@@ -17,6 +18,8 @@ XEN_ARCH = arm32
 endif
 
 XEN_CONF_OPTS = --disable-ocamltools
+
+XEN_CONF_ENV = PYTHON=$(HOST_DIR)/usr/bin/python2
 XEN_MAKE_ENV = \
 	XEN_TARGET_ARCH=$(XEN_ARCH) \
 	CROSS_COMPILE=$(TARGET_CROSS) \
-- 
2.7.4

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

* [Buildroot] [PATCH 2/2] xen: Bump to version 4.7
  2016-08-12 22:30 [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used Alistair Francis
@ 2016-08-12 22:30 ` Alistair Francis
  2016-08-16 11:06   ` Peter Korsgaard
  2016-08-13 11:20 ` [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used Yann E. MORIN
  2016-08-14 14:16 ` Thomas Petazzoni
  2 siblings, 1 reply; 9+ messages in thread
From: Alistair Francis @ 2016-08-12 22:30 UTC (permalink / raw)
  To: buildroot

Bump Xen up to 4.7 which is the latest release.

Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
---
 package/xen/xen.hash | 2 +-
 package/xen/xen.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/xen/xen.hash b/package/xen/xen.hash
index c124b3a..602e6c7 100644
--- a/package/xen/xen.hash
+++ b/package/xen/xen.hash
@@ -1,2 +1,2 @@
 # Locally computed
-sha256 6fa1c2431df55aa5950d248e6093b8c8c0f11c357a0adbd348a2186478e80909 xen-4.6.0.tar.gz
+sha256 be5876144d49729572ae06142e0bb93f1c1f2695578141eff2931995add24623 xen-4.7.0.tar.gz
diff --git a/package/xen/xen.mk b/package/xen/xen.mk
index e2abf25..e2c797f 100644
--- a/package/xen/xen.mk
+++ b/package/xen/xen.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-XEN_VERSION = 4.6.0
+XEN_VERSION = 4.7.0
 XEN_SITE = http://bits.xensource.com/oss-xen/release/$(XEN_VERSION)
 XEN_LICENSE = GPLv2
 XEN_LICENSE_FILES = COPYING
-- 
2.7.4

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

* [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used
  2016-08-12 22:30 [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used Alistair Francis
  2016-08-12 22:30 ` [Buildroot] [PATCH 2/2] xen: Bump to version 4.7 Alistair Francis
@ 2016-08-13 11:20 ` Yann E. MORIN
  2016-08-14 14:16 ` Thomas Petazzoni
  2 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2016-08-13 11:20 UTC (permalink / raw)
  To: buildroot

Alistair, All,

On 2016-08-12 15:30 -0700, Alistair Francis spake thusly:
> To avoid Xen build issues ensure that host Python 2 is used.
> 
> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>

Wee! Works:
    python2... /home/ymorin/dev/buildroot/O/host/usr/bin/python2
    checking for python version >= 2.3 ... yes

Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/xen/xen.mk | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/package/xen/xen.mk b/package/xen/xen.mk
> index 759667a..e2abf25 100644
> --- a/package/xen/xen.mk
> +++ b/package/xen/xen.mk
> @@ -8,6 +8,7 @@ XEN_VERSION = 4.6.0
>  XEN_SITE = http://bits.xensource.com/oss-xen/release/$(XEN_VERSION)
>  XEN_LICENSE = GPLv2
>  XEN_LICENSE_FILES = COPYING
> +XEN_DEPENDENCIES = host-python
>  
>  # Calculate XEN_ARCH
>  ifeq ($(ARCH),aarch64)
> @@ -17,6 +18,8 @@ XEN_ARCH = arm32
>  endif
>  
>  XEN_CONF_OPTS = --disable-ocamltools
> +
> +XEN_CONF_ENV = PYTHON=$(HOST_DIR)/usr/bin/python2
>  XEN_MAKE_ENV = \
>  	XEN_TARGET_ARCH=$(XEN_ARCH) \
>  	CROSS_COMPILE=$(TARGET_CROSS) \
> -- 
> 2.7.4
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used
  2016-08-12 22:30 [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used Alistair Francis
  2016-08-12 22:30 ` [Buildroot] [PATCH 2/2] xen: Bump to version 4.7 Alistair Francis
  2016-08-13 11:20 ` [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used Yann E. MORIN
@ 2016-08-14 14:16 ` Thomas Petazzoni
  2016-08-15 16:40   ` Alistair Francis
  2 siblings, 1 reply; 9+ messages in thread
From: Thomas Petazzoni @ 2016-08-14 14:16 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 12 Aug 2016 15:30:05 -0700, Alistair Francis wrote:
> To avoid Xen build issues ensure that host Python 2 is used.
> 
> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
> ---
>  package/xen/xen.mk | 3 +++
>  1 file changed, 3 insertions(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used
  2016-08-14 14:16 ` Thomas Petazzoni
@ 2016-08-15 16:40   ` Alistair Francis
  2016-08-15 17:04     ` Yann E. MORIN
  0 siblings, 1 reply; 9+ messages in thread
From: Alistair Francis @ 2016-08-15 16:40 UTC (permalink / raw)
  To: buildroot

On Sun, Aug 14, 2016 at 7:16 AM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Hello,
>
> On Fri, 12 Aug 2016 15:30:05 -0700, Alistair Francis wrote:
>> To avoid Xen build issues ensure that host Python 2 is used.
>>
>> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
>> ---
>>  package/xen/xen.mk | 3 +++
>>  1 file changed, 3 insertions(+)
>
> Applied to master, thanks.

Great! Thanks.

Any news on the second patch as well?

Thanks,

Alistair

>
> Thomas
> --
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux, Kernel and Android engineering
> http://free-electrons.com

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

* [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used
  2016-08-15 16:40   ` Alistair Francis
@ 2016-08-15 17:04     ` Yann E. MORIN
  2016-08-15 18:09       ` Alistair Francis
  0 siblings, 1 reply; 9+ messages in thread
From: Yann E. MORIN @ 2016-08-15 17:04 UTC (permalink / raw)
  To: buildroot

Alistair, All,

On 2016-08-15 09:40 -0700, Alistair Francis spake thusly:
> On Sun, Aug 14, 2016 at 7:16 AM, Thomas Petazzoni
> <thomas.petazzoni@free-electrons.com> wrote:
> > Hello,
> >
> > On Fri, 12 Aug 2016 15:30:05 -0700, Alistair Francis wrote:
> >> To avoid Xen build issues ensure that host Python 2 is used.
> >>
> >> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
> >> ---
> >>  package/xen/xen.mk | 3 +++
> >>  1 file changed, 3 insertions(+)
> >
> > Applied to master, thanks.
> 
> Great! Thanks.
> 
> Any news on the second patch as well?

We're in the stabilisation phase after -rc1 was tagged ~two weeks ago.
So, master only gets fixes or documentation.

New features or version bumps may go to the next branch, but since the
focus is on stabilisation, not much gets comitted to next.

Also, it's holidays for a lot of people. Peter is off (or just coming
back) and Thomas is away for the WE (it's a long WE here in .fr!).

Your patch is not forgotten, you can see it is still pending in our
patchwork, as well as 193 other patches:
    https://patchwork.ozlabs.org/project/buildroot/list/

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used
  2016-08-15 17:04     ` Yann E. MORIN
@ 2016-08-15 18:09       ` Alistair Francis
  0 siblings, 0 replies; 9+ messages in thread
From: Alistair Francis @ 2016-08-15 18:09 UTC (permalink / raw)
  To: buildroot

On Mon, Aug 15, 2016 at 10:04 AM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> Alistair, All,
>
> On 2016-08-15 09:40 -0700, Alistair Francis spake thusly:
>> On Sun, Aug 14, 2016 at 7:16 AM, Thomas Petazzoni
>> <thomas.petazzoni@free-electrons.com> wrote:
>> > Hello,
>> >
>> > On Fri, 12 Aug 2016 15:30:05 -0700, Alistair Francis wrote:
>> >> To avoid Xen build issues ensure that host Python 2 is used.
>> >>
>> >> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
>> >> ---
>> >>  package/xen/xen.mk | 3 +++
>> >>  1 file changed, 3 insertions(+)
>> >
>> > Applied to master, thanks.
>>
>> Great! Thanks.
>>
>> Any news on the second patch as well?
>
> We're in the stabilisation phase after -rc1 was tagged ~two weeks ago.
> So, master only gets fixes or documentation.
>
> New features or version bumps may go to the next branch, but since the
> focus is on stabilisation, not much gets comitted to next.

No worries. I wasn't sure if you were getting ready for a release or not.

>
> Also, it's holidays for a lot of people. Peter is off (or just coming
> back) and Thomas is away for the WE (it's a long WE here in .fr!).
>
> Your patch is not forgotten, you can see it is still pending in our
> patchwork, as well as 193 other patches:
>     https://patchwork.ozlabs.org/project/buildroot/list/

Awesome! Thanks

Alistair

>
> Regards,
> Yann E. MORIN.
>
> --
> .-----------------.--------------------.------------------.--------------------.
> |  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
> | +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
> | +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
> | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
> '------------------------------^-------^------------------^--------------------'
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/2] xen: Bump to version 4.7
  2016-08-12 22:30 ` [Buildroot] [PATCH 2/2] xen: Bump to version 4.7 Alistair Francis
@ 2016-08-16 11:06   ` Peter Korsgaard
  2016-08-16 16:46     ` Alistair Francis
  0 siblings, 1 reply; 9+ messages in thread
From: Peter Korsgaard @ 2016-08-16 11:06 UTC (permalink / raw)
  To: buildroot

>>>>> "Alistair" == Alistair Francis <alistair.francis@xilinx.com> writes:

 > Bump Xen up to 4.7 which is the latest release.
 > Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>

Committed to next, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] xen: Bump to version 4.7
  2016-08-16 11:06   ` Peter Korsgaard
@ 2016-08-16 16:46     ` Alistair Francis
  0 siblings, 0 replies; 9+ messages in thread
From: Alistair Francis @ 2016-08-16 16:46 UTC (permalink / raw)
  To: buildroot

On Tue, Aug 16, 2016 at 4:06 AM, Peter Korsgaard <peter@korsgaard.com> wrote:
>>>>>> "Alistair" == Alistair Francis <alistair.francis@xilinx.com> writes:
>
>  > Bump Xen up to 4.7 which is the latest release.
>  > Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
>
> Committed to next, thanks.

Great! Thanks

Alistair

>
> --
> Bye, Peter Korsgaard

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

end of thread, other threads:[~2016-08-16 16:46 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-12 22:30 [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used Alistair Francis
2016-08-12 22:30 ` [Buildroot] [PATCH 2/2] xen: Bump to version 4.7 Alistair Francis
2016-08-16 11:06   ` Peter Korsgaard
2016-08-16 16:46     ` Alistair Francis
2016-08-13 11:20 ` [Buildroot] [PATCH 1/2] xen: Ensure host Python2 is used Yann E. MORIN
2016-08-14 14:16 ` Thomas Petazzoni
2016-08-15 16:40   ` Alistair Francis
2016-08-15 17:04     ` Yann E. MORIN
2016-08-15 18:09       ` Alistair Francis

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.