All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for tune file changes
@ 2011-08-04 13:03 Paul Eggleton
  2011-08-04 13:03 ` [PATCH 1/2] meta-sugarbay: update machine configuration for recent " Paul Eggleton
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Paul Eggleton @ 2011-08-04 13:03 UTC (permalink / raw)
  To: yocto

Two patches to fix "TUNE_ARCH unset" and "PACKAGE_ARCHS variable does not
contain TUNE_PKGARCH" on the autobuilder for sugarbay and jasperforest.

The following changes since commit 567c3b6436b4cb9551c23845c15ab544542b5083:

  meta-crownbay: remove obsolete dir (2011-08-03 12:14:39 -0500)

are available in the git repository at:
  git://git.yoctoproject.org/meta-intel-contrib paule/tune
  http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=paule/tune

Paul Eggleton (2):
  meta-sugarbay: update machine configuration for recent tune file
    changes
  meta-jasperforest: update machine configuration for recent tune file
    changes

 meta-jasperforest/conf/machine/jasperforest.conf |    5 +++--
 meta-sugarbay/conf/machine/sugarbay.conf         |    5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

-- 
1.7.4.4



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

* [PATCH 1/2] meta-sugarbay: update machine configuration for recent tune file changes
  2011-08-04 13:03 [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for tune file changes Paul Eggleton
@ 2011-08-04 13:03 ` Paul Eggleton
  2011-08-04 13:11   ` Richard Purdie
  2011-08-04 13:03 ` [PATCH 2/2] meta-jasperforest: " Paul Eggleton
  2011-08-04 13:29 ` [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for " Tom Zanussi
  2 siblings, 1 reply; 7+ messages in thread
From: Paul Eggleton @ 2011-08-04 13:03 UTC (permalink / raw)
  To: yocto

Require the tune file for x86_64, then TARGET_ARCH is set via the tune
file and TRANSLATED_TARGET_ARCH is set automatically in bitbake.conf.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta-sugarbay/conf/machine/sugarbay.conf |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta-sugarbay/conf/machine/sugarbay.conf b/meta-sugarbay/conf/machine/sugarbay.conf
index 9450d97..9add1ca 100644
--- a/meta-sugarbay/conf/machine/sugarbay.conf
+++ b/meta-sugarbay/conf/machine/sugarbay.conf
@@ -4,8 +4,9 @@
 #@DESCRIPTION: Machine configuration for Sugar Bay systems
 # i.e. Sandy Bridge + Cougar Point
 
-TARGET_ARCH = "x86_64"
-PACKAGE_EXTRA_ARCHS = "x86 snb"
+require conf/machine/include/tune-x86_64.inc
+
+PACKAGE_EXTRA_ARCHS = "x86_64 snb"
 
 BASE_PACKAGE_ARCH="snb"
 
-- 
1.7.4.4



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

* [PATCH 2/2] meta-jasperforest: update machine configuration for recent tune file changes
  2011-08-04 13:03 [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for tune file changes Paul Eggleton
  2011-08-04 13:03 ` [PATCH 1/2] meta-sugarbay: update machine configuration for recent " Paul Eggleton
@ 2011-08-04 13:03 ` Paul Eggleton
  2011-08-04 13:12   ` Richard Purdie
  2011-08-04 13:29 ` [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for " Tom Zanussi
  2 siblings, 1 reply; 7+ messages in thread
From: Paul Eggleton @ 2011-08-04 13:03 UTC (permalink / raw)
  To: yocto

Require the tune file for x86_64, then TARGET_ARCH is set via the tune
file and TRANSLATED_TARGET_ARCH is set automatically in bitbake.conf.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta-jasperforest/conf/machine/jasperforest.conf |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta-jasperforest/conf/machine/jasperforest.conf b/meta-jasperforest/conf/machine/jasperforest.conf
index 1d875b5..b21a417 100644
--- a/meta-jasperforest/conf/machine/jasperforest.conf
+++ b/meta-jasperforest/conf/machine/jasperforest.conf
@@ -4,8 +4,9 @@
 #@DESCRIPTION: Machine configuration for Jasper Forest Picket Post
 # systems i.e. Xeon C5500/C3500 + Intel 3420 chipset (Ibex Peak)
 
-TARGET_ARCH = "x86_64"
-PACKAGE_EXTRA_ARCHS = "x86 xeon"
+require conf/machine/include/tune-x86_64.inc
+
+PACKAGE_EXTRA_ARCHS = "x86_64 xeon"
 
 BASE_PACKAGE_ARCH="xeon"
 
-- 
1.7.4.4



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

* Re: [PATCH 1/2] meta-sugarbay: update machine configuration for recent tune file changes
  2011-08-04 13:03 ` [PATCH 1/2] meta-sugarbay: update machine configuration for recent " Paul Eggleton
@ 2011-08-04 13:11   ` Richard Purdie
  0 siblings, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2011-08-04 13:11 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: yocto

On Thu, 2011-08-04 at 14:03 +0100, Paul Eggleton wrote:
> Require the tune file for x86_64, then TARGET_ARCH is set via the tune
> file and TRANSLATED_TARGET_ARCH is set automatically in bitbake.conf.
> 
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
> ---
>  meta-sugarbay/conf/machine/sugarbay.conf |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-sugarbay/conf/machine/sugarbay.conf b/meta-sugarbay/conf/machine/sugarbay.conf
> index 9450d97..9add1ca 100644
> --- a/meta-sugarbay/conf/machine/sugarbay.conf
> +++ b/meta-sugarbay/conf/machine/sugarbay.conf
> @@ -4,8 +4,9 @@
>  #@DESCRIPTION: Machine configuration for Sugar Bay systems
>  # i.e. Sandy Bridge + Cougar Point
>  
> -TARGET_ARCH = "x86_64"
> -PACKAGE_EXTRA_ARCHS = "x86 snb"
> +require conf/machine/include/tune-x86_64.inc
> +
> +PACKAGE_EXTRA_ARCHS = "x86_64 snb"
>  
>  BASE_PACKAGE_ARCH="snb"

What difference is BASE_PACKAGE_ARCH or snb making in this case?

Cheers,

Richard




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

* Re: [PATCH 2/2] meta-jasperforest: update machine configuration for recent tune file changes
  2011-08-04 13:03 ` [PATCH 2/2] meta-jasperforest: " Paul Eggleton
@ 2011-08-04 13:12   ` Richard Purdie
  0 siblings, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2011-08-04 13:12 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: yocto

On Thu, 2011-08-04 at 14:03 +0100, Paul Eggleton wrote:
> Require the tune file for x86_64, then TARGET_ARCH is set via the tune
> file and TRANSLATED_TARGET_ARCH is set automatically in bitbake.conf.
> 
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
> ---
>  meta-jasperforest/conf/machine/jasperforest.conf |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-jasperforest/conf/machine/jasperforest.conf b/meta-jasperforest/conf/machine/jasperforest.conf
> index 1d875b5..b21a417 100644
> --- a/meta-jasperforest/conf/machine/jasperforest.conf
> +++ b/meta-jasperforest/conf/machine/jasperforest.conf
> @@ -4,8 +4,9 @@
>  #@DESCRIPTION: Machine configuration for Jasper Forest Picket Post
>  # systems i.e. Xeon C5500/C3500 + Intel 3420 chipset (Ibex Peak)
>  
> -TARGET_ARCH = "x86_64"
> -PACKAGE_EXTRA_ARCHS = "x86 xeon"
> +require conf/machine/include/tune-x86_64.inc
> +
> +PACKAGE_EXTRA_ARCHS = "x86_64 xeon"
>  
>  BASE_PACKAGE_ARCH="xeon"

Likewise, what is special about the "xeon" package arch?

Cheers,

Richard




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

* Re: [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for tune file changes
  2011-08-04 13:03 [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for tune file changes Paul Eggleton
  2011-08-04 13:03 ` [PATCH 1/2] meta-sugarbay: update machine configuration for recent " Paul Eggleton
  2011-08-04 13:03 ` [PATCH 2/2] meta-jasperforest: " Paul Eggleton
@ 2011-08-04 13:29 ` Tom Zanussi
  2011-08-04 13:53   ` Paul Eggleton
  2 siblings, 1 reply; 7+ messages in thread
From: Tom Zanussi @ 2011-08-04 13:29 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: yocto@yoctoproject.org

Thanks, Paul.  I made some similar changes here for both of these last
week, but haven't been able to boot them (getting a kernel oops) so
haven't posted them or checked them in.  Once I get past that, I'll be
able to check those in...

Thanks,

Tom

On Thu, 2011-08-04 at 06:03 -0700, Paul Eggleton wrote:
> Two patches to fix "TUNE_ARCH unset" and "PACKAGE_ARCHS variable does not
> contain TUNE_PKGARCH" on the autobuilder for sugarbay and jasperforest.
> 
> The following changes since commit 567c3b6436b4cb9551c23845c15ab544542b5083:
> 
>   meta-crownbay: remove obsolete dir (2011-08-03 12:14:39 -0500)
> 
> are available in the git repository at:
>   git://git.yoctoproject.org/meta-intel-contrib paule/tune
>   http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=paule/tune
> 
> Paul Eggleton (2):
>   meta-sugarbay: update machine configuration for recent tune file
>     changes
>   meta-jasperforest: update machine configuration for recent tune file
>     changes
> 
>  meta-jasperforest/conf/machine/jasperforest.conf |    5 +++--
>  meta-sugarbay/conf/machine/sugarbay.conf         |    5 +++--
>  2 files changed, 6 insertions(+), 4 deletions(-)
> 




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

* Re: [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for tune file changes
  2011-08-04 13:29 ` [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for " Tom Zanussi
@ 2011-08-04 13:53   ` Paul Eggleton
  0 siblings, 0 replies; 7+ messages in thread
From: Paul Eggleton @ 2011-08-04 13:53 UTC (permalink / raw)
  To: yocto

On Thursday 04 August 2011 14:29:47 Tom Zanussi wrote:
> Thanks, Paul.  I made some similar changes here for both of these last
> week, but haven't been able to boot them (getting a kernel oops) so
> haven't posted them or checked them in.  Once I get past that, I'll be
> able to check those in...

OK, FYI after discussion with Richard I'll be posting a v2 set shortly.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

end of thread, other threads:[~2011-08-04 13:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-04 13:03 [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for tune file changes Paul Eggleton
2011-08-04 13:03 ` [PATCH 1/2] meta-sugarbay: update machine configuration for recent " Paul Eggleton
2011-08-04 13:11   ` Richard Purdie
2011-08-04 13:03 ` [PATCH 2/2] meta-jasperforest: " Paul Eggleton
2011-08-04 13:12   ` Richard Purdie
2011-08-04 13:29 ` [PATCH 0/2] [meta-intel] Fix meta-intel BSPs for " Tom Zanussi
2011-08-04 13:53   ` Paul Eggleton

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.