Re: [yocto] Wildcard in RDEPENDS when exporting perl modules to SDK

2014-09-26 Thread Paul Eggleton
Hi Joseph, On Friday 26 September 2014 13:37:29 Joseph Andrew de la Peña wrote: I would like to ask how to include all perl modules into nativesdk? I see that all RDEPENDS for perl has a prefix of ${PN}-module-perl-*. How can I include all perl modules into the nativesdk host package group? Is

Re: [yocto] yocto 1.6 - beaglebone black - cape manager

2014-09-26 Thread TakkTakk
ok, I removed uEnv.txt, pressed the boot switch. Starting kernel ... and hang. why - Image Name: Linux-3.14.0-yocto-standard ? U-Boot SPL 2013.04-dirty (Sep 09 2014 - 21:38:22) musb-hdrc: ConfigData=0xde (UTMI-8, dyn FIFOs, HB-ISO Rx, HB-ISO Tx, SoftConn) musb-hdrc: MHDRC RTL version 2.0

Re: [yocto] yocto 1.6 - beaglebone black - cape manager

2014-09-26 Thread Maciej Borzecki
On Friday 26 of September 2014 15:17:52 TakkTakk wrote: ok, I removed uEnv.txt, pressed the boot switch. Starting kernel ... and hang. why - Image Name: Linux-3.14.0-yocto-standard ? I'd recommend switching to current master (what is to be 1.7 soon), skipping meta-beaglebone for now and

Re: [yocto] [OE-core] [PATCH] bash: update to latest (025) patchset (fixes CVE-2014-6271)

2014-09-26 Thread Mark Hatle
On 9/25/14, 10:00 PM, Francesco Del Degan wrote: Yes, patch 026 that fixes CVE-2014-7169 is underway, should be pushed out today: http://www.openwall.com/lists/oss-security/2014/09/26/1 bash-4.2 (as in dora) got patch048 for CVE-2014-6179 and should receive patch049 as well. I'm going to send

Re: [yocto] Adding 'build-id' to Build Image

2014-09-26 Thread Philip Balister
I added https://bugzilla.yoctoproject.org/show_bug.cgi?id=6770 Sorry no patch yet :) Philip On 09/10/2014 12:38 AM, Paul Eggleton wrote: On Tuesday 09 September 2014 15:03:39 Philip Balister wrote: On 09/08/2014 07:08 PM, Leo Schwab wrote: We'd like to have the system images we build to

[yocto] Ccompiler on 3.8.11-yocto-standard

2014-09-26 Thread eublack
Looking to install C compiler on the above. Any links or documentation would be appreciated. -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] Adding 'build-id' to Build Image

2014-09-26 Thread Douglas Geiger
I've attached a build_info.inc that I've used in some of my image to the issue - comments welcome. Currently I include a build timestamp, and the names and version info on all the layers used in the build and put it in /etc/build Doug On Fri, Sep 26, 2014 at 1:09 PM, Philip Balister

Re: [yocto] Adding 'build-id' to Build Image

2014-09-26 Thread Douglas Geiger
FWIW: most of that file is based off a discussion from back in 2012 - I think Marc Ferland posted a similar file to the list. On Fri, Sep 26, 2014 at 1:55 PM, Douglas Geiger doug.gei...@bioradiation.net wrote: I've attached a build_info.inc that I've used in some of my image to the issue -

Re: [yocto] Ccompiler on 3.8.11-yocto-standard

2014-09-26 Thread Burton, Ross
On 26 September 2014 18:29, eubl...@eircom.net wrote: Looking to install C compiler on the above. Any links or documentation would be appreciated. The easiest way is when generating your image: http://www.yoctoproject.org/docs/1.6.1/mega-manual/mega-manual.html#ref-features-image Ross --

Re: [yocto] Forcing fetch task when source changes

2014-09-26 Thread Burton, Ross
On 23 September 2014 16:46, Vuille, Martin (Martin) vmar...@avaya.com wrote: Very odd. Our BSP vendor has configured BB_SIGNATURE_HANDLER to use OEBasicHash, I see hashes in the stamp file names, if I change the metadata itself the change is detected and the tasks are run again, but

Re: [yocto] Forcing fetch task when source changes

2014-09-26 Thread Vuille, Martin (Martin)
We're planning an update to Dizzy, and to keep up-to-date after that. Thanks for your help MV -Original Message- From: Burton, Ross [mailto:ross.bur...@intel.com] Sent: September 26, 2014 5:55 PM To: Vuille, Martin (Martin) Cc: yocto@yoctoproject.org Subject: Re: [yocto] Forcing

[linux-yocto] [PATCH 0/2] Fix BPF merge build breakage

2014-09-26 Thread Darren Hart
The merge of the net BPF stuff appears to have broken the pch_gbe driver. Backporting these two additional patches from mainline gets the driver building again. -- ___ linux-yocto mailing list linux-yocto@yoctoproject.org

[linux-yocto] [PATCH 1/2] net: ptp: use sk_unattached_filter_create() for BPF

2014-09-26 Thread Darren Hart
From: Daniel Borkmann dbork...@redhat.com This patch migrates an open-coded sk_run_filter() implementation with proper use of the BPF API, that is, sk_unattached_filter_create(). This migration is needed, as we will be internally transforming the filter to a different representation, and

[linux-yocto] [PATCH 2/2] net: ptp: do not reimplement PTP/BPF classifier

2014-09-26 Thread Darren Hart
From: Daniel Borkmann dbork...@redhat.com There are currently pch_gbe, cpts, and ixp4xx_eth drivers that open-code and reimplement a BPF classifier for the PTP protocol. Since all of them effectively do the very same thing and load the very same PTP/BPF filter, we can just consolidate that code

Re: [linux-yocto] [PATCH 1/2] net: ptp: use sk_unattached_filter_create() for BPF

2014-09-26 Thread Darren Hart
I accidentally included the original CC'd people, please do not reply to this with them on Cc. Use this message to reply-all. Apologies. Git sendmail screw up. On 9/26/14, 10:07, Darren Hart dvh...@linux.intel.com wrote: From: Daniel Borkmann dbork...@redhat.com This patch migrates an

Re: [linux-yocto] [PATCH 0/2] Fix BPF merge build breakage

2014-09-26 Thread Darren Hart
On 9/26/14, 10:07, Darren Hart dvh...@linux.intel.com wrote: The merge of the net BPF stuff appears to have broken the pch_gbe driver. Backporting these two additional patches from mainline gets the driver building again. Hold off, this gets the driver to build, but link is failing. Sorry,

Re: [linux-yocto] [PATCH 0/2] Fix BPF merge build breakage

2014-09-26 Thread Bruce Ashfield
On 14-09-26 01:27 PM, Darren Hart wrote: On 9/26/14, 10:07, Darren Hart dvh...@linux.intel.com wrote: The merge of the net BPF stuff appears to have broken the pch_gbe driver. Backporting these two additional patches from mainline gets the driver building again. Hold off, this gets the

[linux-yocto] Please revert this entire series: Re: [PATCH 1/1] Revert net: Rename skb-rxhash to skb-hash

2014-09-26 Thread Darren Hart
This patch series has broken the kernel build. Multiple drivers and core feature no longer even compile. In the future, do not submit patches for inclusion that have not passed a basic allyesconfig/allmodconfig test, if you are changing core features that impact multiple architectures, then you

Re: [linux-yocto] Please revert this entire series: Re: [PATCH 1/1] Revert net: Rename skb-rxhash to skb-hash

2014-09-26 Thread Bruce Ashfield
On 14-09-26 02:42 PM, Darren Hart wrote: This patch series has broken the kernel build. Multiple drivers and core feature no longer even compile. In the future, do not submit patches for inclusion that have not passed a basic allyesconfig/allmodconfig test, if you are changing core features

[linux-yocto] [PATCH] intel: Remove the standard ktype nesting

2014-09-26 Thread Darren Hart
Fixes [YOCTO 6710] intel-common-standard.scc included the standard ktype, but the preempt-rt scc files included intel-common-standard and the preempt-rt ktype. This resulted in a double include of the standard ktype, which caused the meta/scripts/updateme to change the source tree from

Re: [linux-yocto] Please revert this entire series: Re: [PATCH 1/1] Revert net: Rename skb-rxhash to skb-hash

2014-09-26 Thread Bruce Ashfield
On 14-09-26 02:42 PM, Darren Hart wrote: This patch series has broken the kernel build. Multiple drivers and core feature no longer even compile. In the future, do not submit patches for inclusion that have not passed a basic allyesconfig/allmodconfig test, if you are changing core features

Re: [linux-yocto] Please revert this entire series: Re: [PATCH 1/1] Revert net: Rename skb-rxhash to skb-hash

2014-09-26 Thread Darren Hart
On 9/26/14, 12:34, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 14-09-26 02:42 PM, Darren Hart wrote: This patch series has broken the kernel build. Multiple drivers and core feature no longer even compile. In the future, do not submit patches for inclusion that have not passed a

Re: [linux-yocto] Please revert this entire series: Re: [PATCH 1/1] Revert net: Rename skb-rxhash to skb-hash

2014-09-26 Thread Darren Hart
(Resend due to an MUA failure which caused this to be dropped from the list) On 9/26/14, 12:56, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 14-09-26 03:43 PM, Darren Hart wrote: On 9/26/14, 12:34, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 14-09-26 02:42 PM, Darren Hart