Re: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: add conditions for files copied to /boot

2014-05-27 Thread Anders Darander
* Corneliu Stoicescu corneliux.stoice...@intel.com [140526 15:23]: Sometimes the rootfs archive contains the kernel file (core-image-full-cmdline) or the dtbs files (core-image-sato). Adding verification to add them if they don't allready exist. Without this, the first condition would fail

Re: [OE-core] core-image-lsb-dev missing required distro feature ['pam'] (not in DISTRO_FEATURES)

2014-05-27 Thread Iorga, Cristian
Hello, DISTRO = “poky-lsb” should be set in conf/local.conf instead of the default poky distro. Regards, Cristian Iorga YP Intel Corporation From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of John Carter Sent: Tuesday,

Re: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: add conditions for files copied to /boot

2014-05-27 Thread Stoicescu, CorneliuX
-Original Message- From: Anders Darander [mailto:and...@chargestorm.se] Sent: Tuesday, May 27, 2014 9:46 AM To: Stoicescu, CorneliuX Cc: openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: add conditions for files copied to

[OE-core] [PATCH 1/1] strace: fix ptest execution failure

2014-05-27 Thread Chong Lu
Modify ptest suite to make it execute successfully. Signed-off-by: Chong Lu chong...@windriver.com --- meta/recipes-devtools/strace/strace-4.8/run-ptest | 2 +- meta/recipes-devtools/strace/strace_4.8.bb| 6 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git

[OE-core] [PATCH 0/1] strace: fix ptest execution failure

2014-05-27 Thread Chong Lu
The following changes since commit 894df445fa71a170397c6e0b4960a89ef20a4230: guile: Update to 2.0.11 version (2014-05-21 19:50:21 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib chonglu/strace

[OE-core] How to find out why shared sstate is not being used for a recipe

2014-05-27 Thread Mike Looijmans
I have a deja-vu feeling about this question. I have this recipe: https://github.com/topic-embedded-products/meta-topic/blob/master/recipes-bsp/fpga/fpga-image-miami.bb Which includes this one: https://github.com/topic-embedded-products/meta-topic/blob/master/recipes-bsp/fpga/fpga-image.inc

Re: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: add conditions for files copied to /boot

2014-05-27 Thread Stoicescu, CorneliuX
-Original Message- From: Stoicescu, CorneliuX Sent: Tuesday, May 27, 2014 10:02 AM To: 'Anders Darander' Cc: openembedded-core@lists.openembedded.org Subject: RE: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: add conditions for files copied to /boot -Original

Re: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: add conditions for files copied to /boot

2014-05-27 Thread Anders Darander
* Stoicescu, CorneliuX corneliux.stoice...@intel.com [140527 09:02]: -Original Message- From: Anders Darander [mailto:and...@chargestorm.se] * Corneliu Stoicescu corneliux.stoice...@intel.com [140526 15:23]: Sometimes the rootfs archive contains the kernel file

Re: [OE-core] [PATCH 1/2][v2] doxygen-native: add recipe

2014-05-27 Thread Zongchun YU
Whilst this recipe works, I wonder if it would be more useful if it were cross-compilable and used BBCLASSEXTEND to become native. Yes. I agree. it would be more useful. -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org

[OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: fix conditions for files copied to /boot

2014-05-27 Thread Corneliu Stoicescu
Using '' as condition operator in '[ ! -e /mnt/testrootfs/boot/uImage ] cp ~/test-kernel /mnt/testrootfs/boot/uImage' would result in exit code 1 if the first condition is not met. Changing the code to handle the conditioning more cleanly and correctly return exit status 0 if [ ! -e

Re: [OE-core] [PATCH 1/1][V2] ethtool: fix ptest execution failure

2014-05-27 Thread Tudor Florea
-Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Chong Lu Sent: Tuesday, May 27, 2014 04:44 To: openembedded-core@lists.openembedded.org Subject: [OE-core] [PATCH 1/1][V2] ethtool: fix

Re: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: fix conditions for files copied to /boot

2014-05-27 Thread Anders Darander
Just nitpicking a little... It should ideally have had a [PATCH v2] header, to make it easier to see that it's an updated patch. If Saul or someone else picks this up, there should be no need to resubmit. But anyway, for the next time. * Corneliu Stoicescu corneliux.stoice...@intel.com [140527

[OE-core] [PATCH] runqemu-internal: add NIC to kernel parameters

2014-05-27 Thread Adrian Freihofer
Fixes [YOCTO #6356] Problem: If QEMU parameters are extended to emulate additional network interfaces, NFS boot does not work. Example: runqemu ... qemuparams=-net nic,model=virtio... -net tap, ... This is solved by extending the kernel parameters by ::eth0:on --- scripts/runqemu-internal | 2 +-

Re: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: fix conditions for files copied to /boot

2014-05-27 Thread Stefan Stanacar
On Tue, May 27, 2014 at 12:50 PM, Corneliu Stoicescu corneliux.stoice...@intel.com wrote: --- meta-yocto-bsp/lib/oeqa/controllers/beaglebonetarget.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) As this patch is for meta-yocto-bsp this should be sent to p...@yoctoproject.org

Re: [OE-core] [PATCH 1/3] socat: upgrade to 1.7.2.4

2014-05-27 Thread Burton, Ross
On 27 May 2014 02:59, Hongxu Jia hongxu@windriver.com wrote: Signed-off-by: Hongxu Jia hongxu@windriver.com --- .../recipes-connectivity/socat/socat/compile.patch | 163 +++-- Oh wow this patch is ... special. 99% of it is adding the extra arguments to AC_DEFINE so

Re: [OE-core] [PATCH 3/3] socat: fix linux/errqueue.h not found

2014-05-27 Thread Burton, Ross
On 27 May 2014 02:59, Hongxu Jia hongxu@windriver.com wrote: +-AC_CHECK_HEADERS(linux/types.h) +-AC_CHECK_HEADER(linux/errqueue.h, AC_DEFINE(HAVE_LINUX_ERRQUEUE_H), [], [#include linux/types.h]) ++AC_CHECK_HEADERS(linux/types.h linux/errqueue.h) Have you checked the config.log and

Re: [OE-core] [PATCH 4/4] libav (9.13): remove DEFAULT_PREFERENCE

2014-05-27 Thread Paul Eggleton
Hi Tim, On Sunday 25 May 2014 22:29:14 Tim Orling wrote: On Sat, May 24, 2014 at 1:42 AM, Martin Jansa martin.ja...@gmail.comwrote: On Fri, May 23, 2014 at 07:36:42PM -0700, Khem Raj wrote: On Wed, May 21, 2014 at 4:57 AM, Paul Eggleton paul.eggle...@linux.intel.com wrote: Use

Re: [OE-core] [Daisy - Initial Pull 000/111] Please Review

2014-05-27 Thread Jonathan Liu
On 24/05/2014 2:19 AM, Saul Wold wrote: Richard, Here is the first pass at fixes, a number of these are requests from the list, along with the 29 CVE Fixes. I also have a bitbake patch set, which I will send to bitbake-devel. Sau! Please also include

Re: [OE-core] [PATCH 4/4] libav (9.13): remove DEFAULT_PREFERENCE

2014-05-27 Thread Tim Orling
On Tue, May 27, 2014 at 5:28 AM, Paul Eggleton paul.eggle...@linux.intel.com wrote: Hi Tim, On Sunday 25 May 2014 22:29:14 Tim Orling wrote: On Sat, May 24, 2014 at 1:42 AM, Martin Jansa martin.ja...@gmail.com wrote: On Fri, May 23, 2014 at 07:36:42PM -0700, Khem Raj wrote: On Wed,

Re: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: fix conditions for files copied to /boot

2014-05-27 Thread Saul Wold
On 05/27/2014 04:14 AM, Stefan Stanacar wrote: On Tue, May 27, 2014 at 12:50 PM, Corneliu Stoicescu corneliux.stoice...@intel.com wrote: --- meta-yocto-bsp/lib/oeqa/controllers/beaglebonetarget.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) As this patch is for

[OE-core] [PATCH] devshell: Add interactive python shell

2014-05-27 Thread Richard Purdie
Being able to interact with the python context in the Bitbake task execution environment has long been desireable. This patch introduces such a mechanism. Executing bitbake X -c devpyshell will open a terminal connected to a python interactive interpretor in the task context so for example you can

Re: [OE-core] [PATCH 1/1] ddimage: Support Mac OS

2014-05-27 Thread Darren Hart
On 5/24/14, 7:44, Koen Kooi k...@dominion.thruhere.net wrote: Op 23 mei 2014, om 06:28 heeft Darren Hart dvh...@linux.intel.com het volgende geschreven: Update the ddimage script to allow it to work on Mac OS too. The biggest difference is sysfs vs diskutil and in the syntax of the stat

Re: [OE-core] [PATCH 1/1] strace: fix ptest execution failure

2014-05-27 Thread Tudor Florea
-Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Chong Lu Sent: Tuesday, May 27, 2014 10:03 To: openembedded-core@lists.openembedded.org Subject: [OE-core] [PATCH 1/1] strace: fix ptest

Re: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: fix conditions for files copied to /boot

2014-05-27 Thread Stoicescu, CorneliuX
-Original Message- From: Saul Wold [mailto:s...@linux.intel.com] Sent: Tuesday, May 27, 2014 5:24 PM To: Stefan Stanacar; Stoicescu, CorneliuX Cc: openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH] oeqa/controllers/beaglebonetarget.py: fix conditions for files

Re: [OE-core] [PATCH 1/1] strace: fix ptest execution failure

2014-05-27 Thread Saul Wold
On 05/27/2014 08:16 AM, Tudor Florea wrote: -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Chong Lu Sent: Tuesday, May 27, 2014 10:03 To: openembedded-core@lists.openembedded.org Subject:

Re: [OE-core] [PATCH 0/4] [V3]mesa: upgrade to 10.1.3

2014-05-27 Thread Sean Hudson
On 05/22/2014 11:58 AM, Burton, Ross wrote: For these three patches: On 22 May 2014 17:28, Valentin Popa valentin.p...@intel.com wrote: dri3proto: add it to oe-core libxshmfence: add it to oe-core eglinfo: patched to compile with mesa10+ Signed-off-by: Ross Burton

[OE-core] [RESEND PATCH] cmake: Avoid accidentally including libacl.h

2014-05-27 Thread Mike Crowe
The cmake recipe doesn't depend on libacl yet cmake will detect libacl.h and use it by default. This risks build failures if libacl.h is unstaged during the build and it also means that the build cmake will sometimes support ACLs and sometimes not. This can be avoided by setting ENABLE_ACL=0 but

[OE-core] Creating a machine specific recipe for config file

2014-05-27 Thread Saul Wold
Folks, We have had an open enhancement in the form of bugzilla #4011 (https://bugzilla.yoctoproject.org/show_bug.cgi?id=4011). I am currently working on this and want to get some feedback regarding the design, the below list of config files would move to one recipe in recipes-bsp, which

[OE-core] WARNING: FILES GETTING MARKED WORLD-WRITEABLE. (Was: Re: [PATCH 1/1] pseudo: handle fchmodat better, mask out unwanted write bits)

2014-05-27 Thread Peter Seebach
On Wed, 21 May 2014 18:12:33 -0500 Peter Seebach peter.seeb...@windriver.com wrote: +-#define PSEUDO_FS_MODE(mode, isdir) ((mode) | S_IRUSR | S_IWUSR | ((isdir) ? S_IXUSR : 0)) +-#define PSEUDO_DB_MODE(fs_mode, user_mode) (((fs_mode) ~0700) | ((user_mode 0700))) ++#define

[OE-core] [PATCH 0/1] pseudo: honor umask again

2014-05-27 Thread Peter Seebach
The fchmodat patch subtly broke umask support. The key here is that since I was thinking about chmod, chmod is what I tested, and chmod ignores umask. But the patch had the side effect of masking in 022 bits if they were set in the requested mode for an open/mkdir/mknod, even if umask would have

[OE-core] [PATCH 1/1] pseudo: Honor umask again

2014-05-27 Thread Peter Seebach
The fchmodat-permissions patch was fine for the fchmod case, but had the unintended side effect of disregarding umask settings for open, mknod, mkdir, and their close relatives. Start tracking umask and masking the umask bits out where appropriate. Signed-off-by: Peter Seebach

[OE-core] [PATCH v2] ddimage: Support Mac OS

2014-05-27 Thread Darren Hart
Update the ddimage script to allow it to work on Mac OS too. The biggest difference is sysfs vs diskutil and in the syntax of the stat command between Mac OS and Linux, unfortunately. Workarounds using ls, cut, and columns got really fragile really quickly. Relying on stat and switching on uname

Re: [OE-core] Creating a machine specific recipe for config file

2014-05-27 Thread Stephen Arnold
Package management overhead seems like a small-ish price for being able to manage/coordinate custom configs with real depends. Did I mention I like 2) better? Steve On Tue, May 27, 2014 at 11:35 AM, Saul Wold s...@linux.intel.com wrote: Folks, We have had an open enhancement in the form

[OE-core] [PATCH 0/1] i2c-tools: Add i2c-tools to the core

2014-05-27 Thread Darren Hart
The following changes since commit f3d62a9eb9c47356e6150fdd55f790c159e620c7: eglinfo: updated to compile with mesa10+ (2014-05-27 16:11:55 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib dvhart/i2c-tools

Re: [OE-core] Creating a machine specific recipe for config file

2014-05-27 Thread Darren Hart
On 5/27/14, 11:35, Saul Wold s...@linux.intel.com wrote: Folks, We have had an open enhancement in the form of bugzilla #4011 (https://bugzilla.yoctoproject.org/show_bug.cgi?id=4011). I am currently working on this and want to get some feedback regarding the design, the below list of config

Re: [OE-core] Creating a machine specific recipe for config file

2014-05-27 Thread Christopher Larson
On Tue, May 27, 2014 at 1:39 PM, Darren Hart dvh...@linux.intel.com wrote: On 5/27/14, 11:35, Saul Wold s...@linux.intel.com wrote: Folks, We have had an open enhancement in the form of bugzilla #4011 (https://bugzilla.yoctoproject.org/show_bug.cgi?id=4011). I am currently working on

[OE-core] [OE-Core][PATCH] gzip: Avoid host contamination during build

2014-05-27 Thread Dan McGregor
From: Dan McGregor dan.mcgre...@usask.ca On systems with /bin and /usr/bin merged the gzip recipe may find grep in /usr/bin, while OE puts it in /bin. Force the recipe to find grep in the correct place. Signed-off-by: Dan McGregor dan.mcgre...@usask.ca --- meta/recipes-extended/gzip/gzip.inc |

Re: [OE-core] Creating a machine specific recipe for config file

2014-05-27 Thread Stephen Arnold
Actually, that's not bad either. As long as the magic is documented, that sounds pretty good too. Steve On Tue, May 27, 2014 at 1:44 PM, Christopher Larson clar...@kergoth.comwrote: On Tue, May 27, 2014 at 1:39 PM, Darren Hart dvh...@linux.intel.comwrote: On 5/27/14, 11:35, Saul Wold

Re: [OE-core] Creating a machine specific recipe for config file

2014-05-27 Thread Mark Hatle
On 5/27/14, 3:39 PM, Darren Hart wrote: On 5/27/14, 11:35, Saul Wold s...@linux.intel.com wrote: Folks, We have had an open enhancement in the form of bugzilla #4011 (https://bugzilla.yoctoproject.org/show_bug.cgi?id=4011). I am currently working on this and want to get some feedback

[OE-core] [PATCH 1/1] pseudo: Honor umask again

2014-05-27 Thread Peter Seebach
The fchmodat-permissions patch was fine for the fchmod case, but had the unintended side effect of disregarding umask settings for open, mknod, mkdir, and their close relatives. Start tracking umask and masking the umask bits out where appropriate. Signed-off-by: Peter Seebach

[OE-core] [PATCH 0/1] pseudo fchmodat, this time for sure

2014-05-27 Thread Peter Seebach
This improves on the previous patch by moving the umask clearing in mkdirat() outside of a rarely-used #ifdef block. It improves on the original submission by masking out umasks at all, which turns out to be necessary for mkdir, open, etcetera in order to get the right database mode. Originally,

Re: [OE-core] [PATCH 1/1] strace: fix ptest execution failure

2014-05-27 Thread Chong Lu
On 05/27/2014 11:16 PM, Tudor Florea wrote: -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Chong Lu Sent: Tuesday, May 27, 2014 10:03 To: openembedded-core@lists.openembedded.org Subject:

Re: [OE-core] [PATCH 3/3] socat: fix linux/errqueue.h not found

2014-05-27 Thread Hongxu Jia
On 05/27/2014 07:43 PM, Burton, Ross wrote: On 27 May 2014 02:59, Hongxu Jia hongxu@windriver.com wrote: +-AC_CHECK_HEADERS(linux/types.h) +-AC_CHECK_HEADER(linux/errqueue.h, AC_DEFINE(HAVE_LINUX_ERRQUEUE_H), [], [#include linux/types.h]) ++AC_CHECK_HEADERS(linux/types.h linux/errqueue.h)