Re: [OE-core] [oe-core][patch v2] sanity.bbclass: correct the gcc_arch check logic

2013-06-26 Thread Luo Zhenhua-B19537
Randy, Thanks for the details. Following is my trial result, FYI. [b19537@busy ~]$ lsb_release -a LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch Distributor ID: Cen

Re: [OE-core] [PATCH 2/2] dbus: move libdbus-1.so* to base_libdir

2013-06-26 Thread jhuang0
On 6/21/2013 8:36 PM, Richard Purdie wrote: On Fri, 2013-06-21 at 10:02 +0800, jhuang0 wrote: On 6/20/2013 7:46 PM, Saul Wold wrote: On 06/20/2013 04:14 AM, Richard Purdie wrote: On Thu, 2013-06-20 at 11:39 +0100, Burton, Ross wrote: On 20 June 2013 11:36, wrote: From: Jackie Huang mo

Re: [OE-core] eglibc (would be 2.18) recipes

2013-06-26 Thread Khem Raj
On 06/26/2013 06:46 PM, Otavio Salvador wrote: > On Wed, Jun 26, 2013 at 6:06 PM, Khem Raj wrote: >> Hi All >> >> I have put together eglibc recipes for upcoming 2.18 release and pushed to a >> contrib tree here >> >> http://git.openembedded.org/openembedded-core-contrib/log/?h=kraj/eglibc-2.18 >

Re: [OE-core] eglibc (would be 2.18) recipes

2013-06-26 Thread Otavio Salvador
On Wed, Jun 26, 2013 at 6:06 PM, Khem Raj wrote: > Hi All > > I have put together eglibc recipes for upcoming 2.18 release and pushed to a > contrib tree here > > http://git.openembedded.org/openembedded-core-contrib/log/?h=kraj/eglibc-2.18 > > They built angstrom/systemd-images fine and booted O

[OE-core] [PATCH] mc: Don't remove libdir

2013-06-26 Thread Saul Wold
It contains helper programs that are needed to make mc do the right actions for the various file formats it understands. [YOCTO #4432] Signed-off-by: Saul Wold --- meta/recipes-extended/mc/mc_4.8.8.bb | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/recipes-extended/mc/mc_4.8.8.bb b/met

Re: [OE-core] [oe-core][patch v2] sanity.bbclass: correct the gcc_arch check logic

2013-06-26 Thread Randy MacLeod
On 13-06-19 11:28 PM, Luo Zhenhua-B19537 wrote: Ping. -Original Message- From: Luo Zhenhua-B19537 Sent: Tuesday, June 18, 2013 9:26 PM To: 'Richard Purdie'; Randy MacLeod Cc: openembedded-core@lists.openembedded.org; Yu Zongchun-B40527 Subject: RE: [OE-core] [oe-core][patch v2] sanity.b

[OE-core] eglibc (would be 2.18) recipes

2013-06-26 Thread Khem Raj
Hi All I have put together eglibc recipes for upcoming 2.18 release and pushed to a contrib tree here http://git.openembedded.org/openembedded-core-contrib/log/?h=kraj/eglibc-2.18 They built angstrom/systemd-images fine and booted OK on all supported qemu machines on OE-Core Please test them

Re: [OE-core] [PATCH] valgrind: added perl dependency

2013-06-26 Thread Saul Wold
On 06/26/2013 11:39 AM, Felipe Tonello wrote: Should I send another patch? I think that Khem pointed out it should be an RDEPENDS not DEPENDS and you can drop the PR bump. Sau! On Tue, Jun 11, 2013 at 12:36 AM, Khem Raj wrote: On Fri, Jun 7, 2013 at 11:37 AM, Martin Jansa wrote: On Fr

Re: [OE-core] [PATCH] valgrind: added perl dependency

2013-06-26 Thread Felipe Tonello
Should I send another patch? On Tue, Jun 11, 2013 at 12:36 AM, Khem Raj wrote: > On Fri, Jun 7, 2013 at 11:37 AM, Martin Jansa wrote: >> On Fri, Jun 07, 2013 at 10:51:14AM -0700, Felipe Tonello wrote: >>> I got this: >>> >>> valgrind/usr/bin/ms_print >>> 1:#! /usr/bin/perl >>> >>> valgrind/usr/b

Re: [OE-core] Issue with pseudo on 64-bit build host

2013-06-26 Thread Peter Seebach
On Wed, 26 Jun 2013 19:05:05 +0200 Erik Botö wrote: > Yes PSEUDO_UNLOAD=1 should do that, but the hosts libpseudo is not > found when invoking qemu. Therefore the code in pseudo that would > clean the environment of any libpseudo.so in LD_PRELOAD before handing > of to qemu is not run and LD_PREL

[OE-core] [PATCH 2/2] systemd: Move functions that only affect metadata to parse time.

2013-06-26 Thread Randy Witt
From: Randy Witt The functions that don't have dependencies on the data in ${D} should run at parse time. This way overrides behave correctly and the python functions can actually be replaced/redefined in individual recipes. i.e: systemd_postinst_${PN} () { } This is useful for times when you d

[OE-core] [PATCH 1/2] systemd: Don't enable systemd services when native.

2013-06-26 Thread Randy Witt
From: Randy Witt It shouldn't be desired that systemd enable services when using class native. Blanking out the SYSTEMD_PACKAGES when native seems like the most straightforward way to fix this problem. Signed-off-by: Randy Witt --- meta/classes/systemd.bbclass | 2 ++ 1 file changed, 2 inserti

[OE-core] [PATCH 0/2] Make systemd.bbclass work without SYSTEMD_AUTO_ENABLE.

2013-06-26 Thread Randy Witt
Currently when using systemd.bbclass, the package will always get a postinst function that either enables or disables on install, based on the value of the SYSTEMD_AUTO_ENABLE variable. There are instances where automatic disabling or enabling on package install is not desired so this set of patch

[OE-core] [PATCH] boost: Limit PARALLEL_MAKE by -j 64

2013-06-26 Thread Martin Jansa
* greater paralelism isn't supported by bjam and causes segfault or ignoring -j * PARALLEL_MAKE was enabled for boost in http://git.openembedded.org/openembedded-core/commit/?id=9b9cfc1dfe5e3b8f89b7a8508537166d0f23935e Signed-off-by: Martin Jansa --- meta/recipes-support/boost/boost.inc | 18

[OE-core] [PATCH] boost: Limit PARALLEL_MAKE by -j 64

2013-06-26 Thread Martin Jansa
* greater paralelism isn't supported by bjam and causes segfault or ignoring -j * PARALLEL_MAKE was enabled for boost in http://git.openembedded.org/openembedded-core/commit/?id=9b9cfc1dfe5e3b8f89b7a8508537166d0f23935e Signed-off-by: Martin Jansa --- meta/recipes-support/boost/boost.inc | 18

Re: [OE-core] Issue with pseudo on 64-bit build host

2013-06-26 Thread Erik Botö
On Wed, Jun 26, 2013 at 3:30 PM, Laurentiu Palcu wrote: > On Wed, Jun 26, 2013 at 11:33:17AM +0200, Erik Botö wrote: >> Hi, >> >> In bitbake.conf FAKEROOTBASEENV is set to contain >> "PSEUDO_LIBDIR=${STAGING_BINDIR_NATIVE}/../lib/pseudo/lib" but on my >> buildhost libpseudo.so is in >> ${STAGING_B

[OE-core] [oe-core][dylan][PATCH] openssl: fix documentation build errors with Perl 5.18 pod2man

2013-06-26 Thread Josh Cartwright
Please cherrypick upstream commit 8792b7f ("openssl: fix documentation build errors with Perl 5.18") onto the dylan branch. It should apply cleanly; I've also appended it below. This fixes the following build error building openssl: | installing man1/CA.pl.1ssl | installing man1/asn1parse.1ssl |

Re: [OE-core] [PATCH 0/3] make DESCRIPTION support newline

2013-06-26 Thread Saul Wold
On 06/25/2013 08:27 PM, Robert Yang wrote: Ping for this one. Robert, There were some comments on your patch set and I think an issue with the ipk one. Sau! // Robert On 06/19/2013 05:00 PM, Robert Yang wrote: The following changes since commit 590010a6525b0e1bc1de73e794764e23404591df:

[OE-core] [PATCH 1/4] linux-yocto/3.4: allow kernel feature _appends to be overriden

2013-06-26 Thread Bruce Ashfield
Updating the linux-yocto 3.4 recipe's feature flags to match the 3.8 recipe, which has the following change: It was pointed out that the current way the KERNEL_FEATURES variable is appended in the base linux-yocto recipe doesn't allow the appended features to be prevented in a layer wi

[OE-core] [PATCH 4/4] linux-yocto-dev: bump version to 3.10+

2013-06-26 Thread Bruce Ashfield
The linux-yocto-dev kernel is at 3.10-rcX, so we should bump the version to reflect reality. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-dev.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-kernel/linux/linux-yocto-dev.bb b/meta/

[OE-core] [PATCH 2/4] linux-yocto/3.8: add USB screen configuration and net sched options

2013-06-26 Thread Bruce Ashfield
Bumping the meta branch SRCREV for the followiong commits: meta: enable additional NET_SCHED options This change turns on NET_ACT_MIRRED (packet redirecting and mirroring) and NET_CLS_U32 (universal 32bit comparisons w/ hashing classification). Signed-off-by: Michael Barabanov

[OE-core] [PATCH 3/4] linux-yocto/3.4: ltsi: sync to LTSI commit 5f05247ed

2013-06-26 Thread Bruce Ashfield
Updating the 3.4 branches to the latest LTSI baseline. Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb |4 ++-- meta/recipes-kernel/linux/linux-yocto-tiny_3.4.bb |2 +- meta/recipes-kernel/linux/linux-yocto_3.4.bb | 12 ++-- 3 files chan

[OE-core] [PATCH 0/4] linux-yocto: consolidated pull request

2013-06-26 Thread Bruce Ashfield
Richard/Saul, Here's a collection of four patches that I've queued in the past few days. My normal smoke testing passed here. These are a collection of version refreshes, and configuration changes. Nothing major. Once these are merged, the stage is set for more 1.5 development items. Everythin

Re: [OE-core] Issue with pseudo on 64-bit build host

2013-06-26 Thread Laurentiu Palcu
On Wed, Jun 26, 2013 at 11:33:17AM +0200, Erik Botö wrote: > Hi, > > In bitbake.conf FAKEROOTBASEENV is set to contain > "PSEUDO_LIBDIR=${STAGING_BINDIR_NATIVE}/../lib/pseudo/lib" but on my > buildhost libpseudo.so is in > ${STAGING_BINDIR_NATIVE}/../lib/pseudo/lib64. > > For me this causes rpm:s

[OE-core] [PATCH v7] systemd: added python-systemd package generation.

2013-06-26 Thread Yevhen Kyriukha
--- meta/recipes-core/systemd/systemd_204.bb | 20 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/meta/recipes-core/systemd/systemd_204.bb b/meta/recipes-core/systemd/systemd_204.bb index b8b1290..a12c6c9 100644 --- a/meta/recipes-core/systemd/systemd_204.bb

[OE-core] [PATCH] image_types.bbclass: set 'filetype' ext4 feature

2013-06-26 Thread Enrico Scholz
Generating filesystems with this flag allows more efficient directory traversals because getdents() returns the filetype in 'd_type' which allows to avoid an extra lstat() call. Creating ext4 filesystems with 'mkfs.ext4' sets this flag by default too. Signed-off-by: Enrico Scholz --- meta/class

[OE-core] [oe-core][PATCH] groff: correct the install path of man.local

2013-06-26 Thread Zhenhua Luo
openvswitch build failed due to wrong install path of man.local which is provided by groff. Error log: /yocto/build/tmp/sysroots/x86_64-linux/usr/share/groff/1.22.2/tmac/an-old.tmac:690: warning: can't find macro file `man.local' Signed-off-by: Zhenhua Luo --- ...off-1.22.2-correct-man.loc

Re: [OE-core] [PATCH] libx11: enable Xcms by default

2013-06-26 Thread Burton, Ross
On 20 June 2013 10:54, Burton, Ross wrote: >> Since there's already a PACKAGECONFIG option for this, can't you just >> enable that in your distro configuration rather than changing the >> default? I don't think it's ever been the expectation that the default >> settings will represent "maximum fu

[OE-core] [PATCH] bzip2: Add ptest

2013-06-26 Thread Sona Sarmadi
From: Björn Stenberg The existing bzip2 tests in the upstream Makefile are copied to Makefile.am (yocto's) and modified to adopt to the ptest format. Signed-off-by: Björn Stenberg Signed-off-by: Anders Roxell Signed-off-by: Sona Sarmadi --- .../recipes-extended/bzip2/bzip2-1.0.6/Makefile.am

[OE-core] Issue with pseudo on 64-bit build host

2013-06-26 Thread Erik Botö
Hi, In bitbake.conf FAKEROOTBASEENV is set to contain "PSEUDO_LIBDIR=${STAGING_BINDIR_NATIVE}/../lib/pseudo/lib" but on my buildhost libpseudo.so is in ${STAGING_BINDIR_NATIVE}/../lib/pseudo/lib64. For me this causes rpm:s that use qemu_run_binary() to do stuff during do_rootfs() (using post-inst

Re: [OE-core] [PATCH 1/2] libx11: move xcms enabling to PACKAGECONFIG for LSB Library Check

2013-06-26 Thread Burton, Ross
On 26 June 2013 03:30, Hongxu Jia wrote: > +# LSB 4.1 Library Check requires enable Xcms, set enable as default. > PACKAGECONFIG ??= "" > -PACKAGECONFIG[xcms] = "--enable-xcms,--disable-xcms" > +PACKAGECONFIG[xcms] = "--enable-xcms" Whether to enable Xcms by default is something we're debating r