All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-yocto CONSOLIDATED PULL (for RC3) 0/3]
@ 2012-04-11  1:37 Saul Wold
  2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 1/3] poky-tiny.conf: adjust eglibc options for poky-tiny Saul Wold
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Saul Wold @ 2012-04-11  1:37 UTC (permalink / raw)
  To: poky

Please pull these updates for RC3

Thanks
	Sau!

The following changes since commit 9067f7bfc295e2f47fda8031d2bcdcce8f63e894:

  Hob:Fixed some incorrect values of Build configuration tab (2012-04-11 00:05:23 +0100)

are available in the git repository at:
  git://git.yoctoproject.org/poky-contrib sgw/stage
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=sgw/stage

Bruce Ashfield (1):
  linux-yocto/meta-yocto: update hardware reference boards to v3.0.24

Nitin A Kamble (1):
  poky-tiny.conf: adjust eglibc options for poky-tiny

Robert Yang (1):
  beagleboard.conf: fix hardcode of virtual/xserver

 meta-yocto/conf/distro/poky-tiny.conf              |    6 ++++++
 meta-yocto/conf/machine/beagleboard.conf           |    4 ++--
 .../recipes-kernel/linux/linux-yocto_3.0.bbappend  |    8 ++++----
 3 files changed, 12 insertions(+), 6 deletions(-)

-- 
1.7.7.6



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

* [meta-yocto CONSOLIDATED PULL (for RC3) 1/3] poky-tiny.conf: adjust eglibc options for poky-tiny
  2012-04-11  1:37 [meta-yocto CONSOLIDATED PULL (for RC3) 0/3] Saul Wold
@ 2012-04-11  1:37 ` Saul Wold
  2012-04-11 17:22   ` Darren Hart
  2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 2/3] beagleboard.conf: fix hardcode of virtual/xserver Saul Wold
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 6+ messages in thread
From: Saul Wold @ 2012-04-11  1:37 UTC (permalink / raw)
  To: poky

From: Nitin A Kamble <nitin.a.kamble@intel.com>

Avoid errors for building meta-toolchain for poky-tiny

This Fixes Bug: [YOCTO #2259]

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
 meta-yocto/conf/distro/poky-tiny.conf |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
index 395c6fb..58d64ec 100644
--- a/meta-yocto/conf/distro/poky-tiny.conf
+++ b/meta-yocto/conf/distro/poky-tiny.conf
@@ -63,6 +63,12 @@ ASSUME_PROVIDED += "pkgconfig$"
 # Reconfigure eglibc for a smaller installation
 # Comment out any of the lines below to disable them in the build
 DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt"
+# for gettext
+DISTRO_FEATURES_LIBC_TINY += "libc-posix-clang-wchar"
+# for m4
+DISTRO_FEATURES_LIBC_TINY += "libc-spawn libc-locale-code"
+# for elfutils
+DISTRO_FEATURES_LIBC_TINY += "libc-ftraverse"
 # Required for "who"
 DISTRO_FEATURES_LIBC_MINIMAL = "libc-utmp libc-getlogin"
 DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp"
-- 
1.7.7.6



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

* [meta-yocto CONSOLIDATED PULL (for RC3) 2/3] beagleboard.conf: fix hardcode of virtual/xserver
  2012-04-11  1:37 [meta-yocto CONSOLIDATED PULL (for RC3) 0/3] Saul Wold
  2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 1/3] poky-tiny.conf: adjust eglibc options for poky-tiny Saul Wold
@ 2012-04-11  1:37 ` Saul Wold
  2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 3/3] linux-yocto/meta-yocto: update hardware reference boards to v3.0.24 Saul Wold
  2012-04-11 11:10 ` [meta-yocto CONSOLIDATED PULL (for RC3) 0/3] Richard Purdie
  3 siblings, 0 replies; 6+ messages in thread
From: Saul Wold @ 2012-04-11  1:37 UTC (permalink / raw)
  To: poky

From: Robert Yang <liezhi.yang@windriver.com>

Here is the message from the bug 2260:

meta-yocto/conf/machine/beagleboard.conf hardcodes the virtual/xserver
provider, i.e., it includes the following:

PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg-lite"

I don't think machine conf is the correct place for selecting what is
essentially a distro feature, but at least this should use the '?='
operator; as is to select a different provider one must provide a
complete beagleboard.conf file.

[YOCTO #2260]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta-yocto/conf/machine/beagleboard.conf |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-yocto/conf/machine/beagleboard.conf b/meta-yocto/conf/machine/beagleboard.conf
index fa2f8e7..06a0ecd 100644
--- a/meta-yocto/conf/machine/beagleboard.conf
+++ b/meta-yocto/conf/machine/beagleboard.conf
@@ -2,8 +2,8 @@
 #@NAME: Beagleboard machine
 #@DESCRIPTION: Machine configuration for the http://beagleboard.org/ board 
 
-PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg-lite"
-XSERVER = "xserver-xorg-lite \
+PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg-lite"
+XSERVER ?= "xserver-xorg-lite \
            xf86-input-evdev \
            xf86-input-mouse \
            xf86-video-omapfb \
-- 
1.7.7.6



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

* [meta-yocto CONSOLIDATED PULL (for RC3) 3/3] linux-yocto/meta-yocto: update hardware reference boards to v3.0.24
  2012-04-11  1:37 [meta-yocto CONSOLIDATED PULL (for RC3) 0/3] Saul Wold
  2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 1/3] poky-tiny.conf: adjust eglibc options for poky-tiny Saul Wold
  2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 2/3] beagleboard.conf: fix hardcode of virtual/xserver Saul Wold
@ 2012-04-11  1:37 ` Saul Wold
  2012-04-11 11:10 ` [meta-yocto CONSOLIDATED PULL (for RC3) 0/3] Richard Purdie
  3 siblings, 0 replies; 6+ messages in thread
From: Saul Wold @ 2012-04-11  1:37 UTC (permalink / raw)
  To: poky

From: Bruce Ashfield <bruce.ashfield@windriver.com>

The meta-yocto hardware reference boards missed a SRCREV update when the
base recipe when to v3.0.24. This updates the SRCREVs to ensure that the
kernel that is built and booted matches the version information conveyed
from the base recipe.

Fixes [YOCTO #2265]

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 .../recipes-kernel/linux/linux-yocto_3.0.bbappend  |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend b/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
index 2a9ad7b..5277a69 100644
--- a/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
+++ b/meta-yocto/recipes-kernel/linux/linux-yocto_3.0.bbappend
@@ -4,10 +4,10 @@ KMACHINE_mpc8315e-rdb = "yocto/standard/fsl-mpc8315e-rdb"
 KMACHINE_beagleboard = "yocto/standard/beagleboard"
 
 
-SRCREV_machine_atom-pc ?= "b42d0d016af36d0bbbb619c424200d4b5bc9ba28"
-SRCREV_machine_routerstationpro ?= "f1bc894b09bd9b048df99e53fd6559c5d84e4871"
-SRCREV_machine_mpc8315e-rdb ?= "7ba6d6853b6e7cf00a742baeba1503c80fc05314"
-SRCREV_machine_beagleboard ?= "fccd4e4041454f16f1e7a25569ec530eaa1bf89e"
+SRCREV_machine_atom-pc ?= "12b4af6966843baf7bb3aedbae93e69ae19405b0"
+SRCREV_machine_routerstationpro ?= "12b4af6966843baf7bb3aedbae93e69ae19405b0"
+SRCREV_machine_mpc8315e-rdb ?= "12b4af6966843baf7bb3aedbae93e69ae19405b0"
+SRCREV_machine_beagleboard ?= "12b4af6966843baf7bb3aedbae93e69ae19405b0"
 
 COMPATIBLE_MACHINE_mpc8315e-rdb = "mpc8315e-rdb"
 COMPATIBLE_MACHINE_routerstationpro = "routerstationpro"
-- 
1.7.7.6



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

* Re: [meta-yocto CONSOLIDATED PULL (for RC3) 0/3]
  2012-04-11  1:37 [meta-yocto CONSOLIDATED PULL (for RC3) 0/3] Saul Wold
                   ` (2 preceding siblings ...)
  2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 3/3] linux-yocto/meta-yocto: update hardware reference boards to v3.0.24 Saul Wold
@ 2012-04-11 11:10 ` Richard Purdie
  3 siblings, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2012-04-11 11:10 UTC (permalink / raw)
  To: Saul Wold; +Cc: poky

On Tue, 2012-04-10 at 18:37 -0700, Saul Wold wrote:
> Please pull these updates for RC3
> 
> Thanks
> 	Sau!
> 
> The following changes since commit 9067f7bfc295e2f47fda8031d2bcdcce8f63e894:
> 
>   Hob:Fixed some incorrect values of Build configuration tab (2012-04-11 00:05:23 +0100)
> 
> are available in the git repository at:
>   git://git.yoctoproject.org/poky-contrib sgw/stage
>   http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=sgw/stage
> 
> Bruce Ashfield (1):
>   linux-yocto/meta-yocto: update hardware reference boards to v3.0.24
> 
> Nitin A Kamble (1):
>   poky-tiny.conf: adjust eglibc options for poky-tiny
> 
> Robert Yang (1):
>   beagleboard.conf: fix hardcode of virtual/xserver

Merged to master, thanks.

Richard



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

* Re: [meta-yocto CONSOLIDATED PULL (for RC3) 1/3] poky-tiny.conf: adjust eglibc options for poky-tiny
  2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 1/3] poky-tiny.conf: adjust eglibc options for poky-tiny Saul Wold
@ 2012-04-11 17:22   ` Darren Hart
  0 siblings, 0 replies; 6+ messages in thread
From: Darren Hart @ 2012-04-11 17:22 UTC (permalink / raw)
  To: Saul Wold; +Cc: poky



On 04/10/2012 06:37 PM, Saul Wold wrote:
> From: Nitin A Kamble <nitin.a.kamble@intel.com>
> 
> Avoid errors for building meta-toolchain for poky-tiny
> 
> This Fixes Bug: [YOCTO #2259]
> 
> Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>

Please CC the maintainer.

> ---
>  meta-yocto/conf/distro/poky-tiny.conf |    6 ++++++
>  1 files changed, 6 insertions(+), 0 deletions(-)
> 
> diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
> index 395c6fb..58d64ec 100644
> --- a/meta-yocto/conf/distro/poky-tiny.conf
> +++ b/meta-yocto/conf/distro/poky-tiny.conf
> @@ -63,6 +63,12 @@ ASSUME_PROVIDED += "pkgconfig$"
>  # Reconfigure eglibc for a smaller installation
>  # Comment out any of the lines below to disable them in the build
>  DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt"
> +# for gettext
> +DISTRO_FEATURES_LIBC_TINY += "libc-posix-clang-wchar"
> +# for m4
> +DISTRO_FEATURES_LIBC_TINY += "libc-spawn libc-locale-code"
> +# for elfutils
> +DISTRO_FEATURES_LIBC_TINY += "libc-ftraverse"


Whoa, hold on. How much size did this add to the tiny libc? No patches
should be applied to tiny without indication of how much size they add.

Why is it necessary to bloat the target libc in order to build a
toolchain for it?

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


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

end of thread, other threads:[~2012-04-11 17:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-11  1:37 [meta-yocto CONSOLIDATED PULL (for RC3) 0/3] Saul Wold
2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 1/3] poky-tiny.conf: adjust eglibc options for poky-tiny Saul Wold
2012-04-11 17:22   ` Darren Hart
2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 2/3] beagleboard.conf: fix hardcode of virtual/xserver Saul Wold
2012-04-11  1:37 ` [meta-yocto CONSOLIDATED PULL (for RC3) 3/3] linux-yocto/meta-yocto: update hardware reference boards to v3.0.24 Saul Wold
2012-04-11 11:10 ` [meta-yocto CONSOLIDATED PULL (for RC3) 0/3] Richard Purdie

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.