All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization][PATCH 1/2] xen-tools: fix COMPATIBLE_HOST restriction for i686
@ 2020-03-03 14:10 Martin Jansa
  2020-03-03 14:10 ` [meta-virtualization][PATCH 2/2] xen-python2: add the same COMPATIBLE_HOST restriction as xen-tools Martin Jansa
  2020-03-04  1:03 ` [meta-virtualization][PATCH 1/2] xen-tools: fix COMPATIBLE_HOST restriction for i686 Bruce Ashfield
  0 siblings, 2 replies; 4+ messages in thread
From: Martin Jansa @ 2020-03-03 14:10 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Martin Jansa

* let TARGET_VENDOR to be set to something else than the default:
  meta/conf/bitbake.conf:TARGET_VENDOR = "-oe"
  like other architectures use
---
 recipes-extended/xen/xen-tools.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-extended/xen/xen-tools.inc b/recipes-extended/xen/xen-tools.inc
index 8bdbfec..8b86f7b 100644
--- a/recipes-extended/xen/xen-tools.inc
+++ b/recipes-extended/xen/xen-tools.inc
@@ -1,7 +1,7 @@
 SUMMARY = "Xen hypervisor tools"
 DESCRIPTION = "Tools and utility software for the Xen hypervisor"
 
-COMPATIBLE_HOST = 'i686-oe-linux|(x86_64.*).*-linux|aarch64.*-linux|arm-.*-linux-gnueabi'
+COMPATIBLE_HOST = 'i686-.*-linux|(x86_64.*).*-linux|aarch64.*-linux|arm-.*-linux-gnueabi'
 
 inherit setuptools3 update-rc.d systemd deploy
 require xen-blktap.inc
-- 
2.20.1


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

* [meta-virtualization][PATCH 2/2] xen-python2: add the same COMPATIBLE_HOST restriction as xen-tools
  2020-03-03 14:10 [meta-virtualization][PATCH 1/2] xen-tools: fix COMPATIBLE_HOST restriction for i686 Martin Jansa
@ 2020-03-03 14:10 ` Martin Jansa
  2020-03-09 17:25   ` Christopher Clark
  2020-03-04  1:03 ` [meta-virtualization][PATCH 1/2] xen-tools: fix COMPATIBLE_HOST restriction for i686 Bruce Ashfield
  1 sibling, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2020-03-03 14:10 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Martin Jansa

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 recipes-extended/xen/xen-python2.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/recipes-extended/xen/xen-python2.bb b/recipes-extended/xen/xen-python2.bb
index 08d8e92..ad3c1fd 100644
--- a/recipes-extended/xen/xen-python2.bb
+++ b/recipes-extended/xen/xen-python2.bb
@@ -6,6 +6,9 @@ SECTION = "console/tools"
 
 SRCREV ?= "a5fcafbfbee55261853fba07149c1c795f2baf58"
 
+# The same restriction as xen-tools.inc, because of the dependency on xen-tools-xentrace from xen-tools-xentrace-format
+COMPATIBLE_HOST = 'i686-.*-linux|(x86_64.*).*-linux|aarch64.*-linux|arm-.*-linux-gnueabi'
+
 XEN_REL ?= "4.12"
 XEN_BRANCH ?= "stable-4.12"
 
-- 
2.20.1


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

* Re: [meta-virtualization][PATCH 1/2] xen-tools: fix COMPATIBLE_HOST restriction for i686
  2020-03-03 14:10 [meta-virtualization][PATCH 1/2] xen-tools: fix COMPATIBLE_HOST restriction for i686 Martin Jansa
  2020-03-03 14:10 ` [meta-virtualization][PATCH 2/2] xen-python2: add the same COMPATIBLE_HOST restriction as xen-tools Martin Jansa
@ 2020-03-04  1:03 ` Bruce Ashfield
  1 sibling, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2020-03-04  1:03 UTC (permalink / raw)
  To: Martin Jansa; +Cc: meta-virtualization


merged.

Bruce

In message: [meta-virtualization][PATCH 1/2] xen-tools: fix COMPATIBLE_HOST restriction for i686
on 03/03/2020 Martin Jansa wrote:

> * let TARGET_VENDOR to be set to something else than the default:
>   meta/conf/bitbake.conf:TARGET_VENDOR = "-oe"
>   like other architectures use
> ---
>  recipes-extended/xen/xen-tools.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/recipes-extended/xen/xen-tools.inc b/recipes-extended/xen/xen-tools.inc
> index 8bdbfec..8b86f7b 100644
> --- a/recipes-extended/xen/xen-tools.inc
> +++ b/recipes-extended/xen/xen-tools.inc
> @@ -1,7 +1,7 @@
>  SUMMARY = "Xen hypervisor tools"
>  DESCRIPTION = "Tools and utility software for the Xen hypervisor"
>  
> -COMPATIBLE_HOST = 'i686-oe-linux|(x86_64.*).*-linux|aarch64.*-linux|arm-.*-linux-gnueabi'
> +COMPATIBLE_HOST = 'i686-.*-linux|(x86_64.*).*-linux|aarch64.*-linux|arm-.*-linux-gnueabi'
>  
>  inherit setuptools3 update-rc.d systemd deploy
>  require xen-blktap.inc
> -- 
> 2.20.1
> 

> 


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

* Re: [meta-virtualization][PATCH 2/2] xen-python2: add the same COMPATIBLE_HOST restriction as xen-tools
  2020-03-03 14:10 ` [meta-virtualization][PATCH 2/2] xen-python2: add the same COMPATIBLE_HOST restriction as xen-tools Martin Jansa
@ 2020-03-09 17:25   ` Christopher Clark
  0 siblings, 0 replies; 4+ messages in thread
From: Christopher Clark @ 2020-03-09 17:25 UTC (permalink / raw)
  To: Martin Jansa; +Cc: meta-virtualization

On Tue, Mar 3, 2020 at 6:10 AM Martin Jansa <Martin.Jansa@gmail.com> wrote:
>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  recipes-extended/xen/xen-python2.bb | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/recipes-extended/xen/xen-python2.bb b/recipes-extended/xen/xen-python2.bb
> index 08d8e92..ad3c1fd 100644
> --- a/recipes-extended/xen/xen-python2.bb
> +++ b/recipes-extended/xen/xen-python2.bb
> @@ -6,6 +6,9 @@ SECTION = "console/tools"
>
>  SRCREV ?= "a5fcafbfbee55261853fba07149c1c795f2baf58"
>
> +# The same restriction as xen-tools.inc, because of the dependency on xen-tools-xentrace from xen-tools-xentrace-format
> +COMPATIBLE_HOST = 'i686-.*-linux|(x86_64.*).*-linux|aarch64.*-linux|arm-.*-linux-gnueabi'
> +
>  XEN_REL ?= "4.12"
>  XEN_BRANCH ?= "stable-4.12"
>

Reviewed-by: Christopher Clark <christopher.w.clark@gmail.com>

Christopher

> --
> 2.20.1
>
> 

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

end of thread, other threads:[~2020-03-09 17:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-03 14:10 [meta-virtualization][PATCH 1/2] xen-tools: fix COMPATIBLE_HOST restriction for i686 Martin Jansa
2020-03-03 14:10 ` [meta-virtualization][PATCH 2/2] xen-python2: add the same COMPATIBLE_HOST restriction as xen-tools Martin Jansa
2020-03-09 17:25   ` Christopher Clark
2020-03-04  1:03 ` [meta-virtualization][PATCH 1/2] xen-tools: fix COMPATIBLE_HOST restriction for i686 Bruce Ashfield

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.