[yocto] [meta-security][PATCH] suricata: update to 2.0.7

2015-03-13 Thread Armin Kuster
this includes CVE-2015-0928 moved patches and files to more generic dir name Signed-off-by: Armin Kuster akuster...@gmail.com --- .../suricata/{suricata-2.0.6 = files}/no_libhtp_build.patch| 0 .../suricata/{suricata-2.0.6 = files}/no_pcap_pkgconf_check.patch | 0

Re: [yocto] File in append recipe not installed

2015-03-13 Thread p_j_r_m
Thanks for your suggestionsThe problem was that my recipe files were taken from sstate directories, even when they were previously cleaned with bitbake -c clean. If I use -c cleansstate instead, all is ok . El Viernes 13 de marzo de 2015 9:17, Paul Eggleton

[yocto] File in append recipe not installed

2015-03-13 Thread p_j_r_m
Thanks Gary. I think is not called because I have echo lines in do_install_append() and they don't appear when bitbake -v is used after the recipe is cleaned and rebuilt. This is my layer: releases/meta-mylayer ├── conf │ └── layer.conf ├── README --

Re: [yocto] bind: issue in trust anchor management can cause named to crash (CVE-2015-1349)

2015-03-13 Thread Sona Sarmadi
Hi Benjamin, I think this list is not published in the yocto lists page: https://www.yoctoproject.org/tools-resources/community/mailing-lists And, who would be able to subscribe to it? invite-only? public? This mailing list is an open list to discuss security related activities (mainly for

Re: [yocto] Difference b/w yocto kernels and normal linux.org kernels

2015-03-13 Thread Paul Eggleton
On Friday 13 March 2015 08:14:13 Raghavendra Kakarla wrote: Is it kernel is must be a git repository code for building in the yocto? When i gave my custom kernel which is not a git repository code and it is in my development PC, i got invalid SRCREV number error. But when give the same

Re: [yocto] eclipse-poky: Can't build from Eclipse, but command line build works

2015-03-13 Thread Minchev, Todor
*snip* This is a different error. There seems to be a mismatch between your toolchain and rootfs. Could you please share the full name of my_built_image.tar.gz from runqemu-extract-sdk my_built_image.tar.gz sysroot_destination_directory I have been able to get things to

Re: [yocto] eclipse-poky: Can't build from Eclipse, but command line build works

2015-03-13 Thread Bryan Evenson
Todor, -Original Message- From: Minchev, Todor [mailto:todor.minc...@intel.com] Sent: Friday, March 13, 2015 4:59 AM To: Bryan Evenson Cc: yocto@yoctoproject.org Subject: Re: [yocto] eclipse-poky: Can't build from Eclipse, but command line build works *snip* This is a

Re: [yocto] Difference b/w yocto kernels and normal linux.org kernels

2015-03-13 Thread Raghavendra Kakarla
Hi Paul Eggleton, Is it kernel is must be a git repository code for building in the yocto? When i gave my custom kernel which is not a git repository code and it is in my development PC, i got invalid SRCREV number error. But when give the same kernel from the git repository it is working. Can

Re: [yocto] Difference b/w yocto kernels and normal linux.org kernels

2015-03-13 Thread Albert K
Hi Paul, I hope you don't mind me asking a question slightly out of topic. I would like to know if there is a recipe for linux kernel 3.19 for dizzy branch (intel x64). Thanks. Regards, Albert. On Fri, Mar 13, 2015 at 4:53 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Friday 13

Re: [yocto] File in append recipe not installed

2015-03-13 Thread Paul Eggleton
On Thursday 12 March 2015 18:01:16 Gary Thomas wrote: On 2015-03-12 17:21, p_j_r_m wrote: I've tested it, but the problem is the same. My bbappend recipe is not even called ,so it does not matter what i put in it. Why is not called? Please don't top-post :-( How do you know that your

Re: [yocto] running task only for native but not target?

2015-03-13 Thread Paul Eggleton
Hi Yannick, On Thursday 12 March 2015 19:05:13 Koehler, Yannick wrote: I have a package that produce a binary that I need for native, and an C header file that I need for target. I put the following do_install function to install appropriately the bin or header according to the class:

Re: [yocto] Difference b/w yocto kernels and normal linux.org kernels

2015-03-13 Thread Paul Eggleton
On Friday 13 March 2015 17:05:29 Albert K wrote: I hope you don't mind me asking a question slightly out of topic. I would like to know if there is a recipe for linux kernel 3.19 for dizzy branch (intel x64). Thanks. No, not out of the box - 3.19 wasn't available at the time dizzy (1.7) was

[yocto] Post install script in a recipe

2015-03-13 Thread Bipnesh, Abhinav (Abhinav)
Hi All, I was trying to perform a post install activity as part of the recipe using pkg_postinst_PACKAGENAME() but seems it's not working. Below is the sample function we have written as part of the recipe pkg_postinst_test (){ #!/bin/sh -xe echo we are calling post install for

Re: [yocto] running task only for native but not target?

2015-03-13 Thread Koehler, Yannick (HP Networking)
Hi Paul, Thanks, yes that is likely to work, I will try it. I was looking for a more Yocto-like solution using the overriding stuff but it seems the overriding doesn't apply in this particular situation. Yannick Koehler -Message d'origine- De : Paul Eggleton

Re: [yocto] Using Pre Built Toolchain in Yocto Tree

2015-03-13 Thread Gary Thomas
On 2015-03-13 08:47, Mark Hatle wrote: On 3/13/15 6:43 AM, Darshan Patel wrote: Is there a way to configure Yocto to use Pre Built toolchain (like downloaded from CodeSourcery, etc.). I want to avoid building toolchain because it takes too much time and using new toolchain is not of my concern.

Re: [yocto] Using Pre Built Toolchain in Yocto Tree

2015-03-13 Thread Mark Hatle
On 3/13/15 6:43 AM, Darshan Patel wrote: Is there a way to configure Yocto to use Pre Built toolchain (like downloaded from CodeSourcery, etc.). I want to avoid building toolchain because it takes too much time and using new toolchain is not of my concern. If you wish to use the Mentor

[yocto] Qt mouse driver

2015-03-13 Thread Parthiban Kandasamy
i successfully built customized yocto project(Qte-demo) for beagleboard-xm, In project i use two input device i.e mouse and touchscreen. Default library used in qt is tslib. So how do i use mouse and touchscreen at the same time? -- thanks and regards, parthiban +919790329795 --

Re: [yocto] running task only for native but not target?

2015-03-13 Thread Burton, Ross
On 13 March 2015 at 11:46, Koehler, Yannick (HP Networking) yannick.koeh...@hp.com wrote: Thanks, yes that is likely to work, I will try it. I was looking for a more Yocto-like solution using the overriding stuff but it seems the overriding doesn't apply in this particular situation. An

[yocto] Using Pre Built Toolchain in Yocto Tree

2015-03-13 Thread Darshan Patel
Is there a way to configure Yocto to use Pre Built toolchain (like downloaded from CodeSourcery, etc.). I want to avoid building toolchain because it takes too much time and using new toolchain is not of my concern. I was using this feature in buildroot. Thanks in Advance!!! -- Regards Darshan

Re: [linux-yocto] [PATCH 0/3] LSI AXXIA updates to 3.4 standard/axxia/base

2015-03-13 Thread Cristian Bercaru
Hello! I searched for the patches' code here [1] but I haven't found anything. Hence I( think they are the original work of Sangeetha Rao and not taken from upstream. [1] https://github.com/torvalds/linux/commits/master Cristian Bercaru On 03/12/2015 04:38 PM, Bruce Ashfield wrote: On

[yocto] [meta-security][PATCH] libseccomp update

2015-03-13 Thread Armin Kuster
PPC support is not yet in master. I will backport patches shortly. Ptest/tests for this package require busybox config changes to get the scripts to work, so they are exclude with this update. For more information on this release, please see:

Re: [yocto] Using Pre Built Toolchain in Yocto Tree

2015-03-13 Thread Maxin John
Hi Darshan, On Fri, Mar 13, 2015 at 12:43 PM, Darshan Patel darsh...@gmail.com wrote: Is there a way to configure Yocto to use Pre Built toolchain (like downloaded from CodeSourcery, etc.). I want to avoid building toolchain because it takes too much time and using new toolchain is not of my

Re: [yocto] Using Pre Built Toolchain in Yocto Tree

2015-03-13 Thread Maxin John
Hi Darshan, On a second thought, feels like I misunderstood your question. Please refer these: a) http://www.yoctoproject.org/docs/latest/adt-manual/adt-manual.html#optionally-using-an-external-toolchain b) http://elinux.org/images/c/c8/ExternalToolchainsInYocto.pdf c)

Re: [yocto] OpenEmbedded Developer America's Meeting

2015-03-13 Thread akuster
Hello Folks, OEDAM is nearing. If you have not signed up, please do so. It will help me with head count for badges. We also need more subject matter the Agenda. If you have any topics or ideas, please submit them. kind regards, Armin On 02/10/2015 12:27 PM, Philip Balister wrote: We've

Re: [linux-yocto] [PATCH 0/3] LSI AXXIA updates to 3.4 standard/axxia/base

2015-03-13 Thread Cristian Bercaru
Adding sangeetha On 03/13/2015 05:38 PM, Cristian Bercaru wrote: Hello! I searched for the patches' code here [1] but I haven't found anything. Hence I( think they are the original work of Sangeetha Rao and not taken from upstream. [1] https://github.com/torvalds/linux/commits/master

[yocto] [ANNOUNCEMENT] 1.8_M3 released

2015-03-13 Thread Flanagan, Elizabeth
The third milestone release for Yocto Project 1.8 is available for download now. http://downloads.yoctoproject.org/releases/yocto/milestones/yocto-1.8_M3/ Thank you everyone for your contributions. eclipse-poky/juno-master 26bfc407781aa185f244a47ba63120343cee4a37 eclipse-poky/kepler-master

Re: [yocto] OpenEmbedded Developer America's Meeting

2015-03-13 Thread Philip Balister
You can add yourself here (or drop me an email if you have trouble logging in) http://www.openembedded.org/wiki/OEDAM_2015 We plan to have a Hangout on the Air so people can follow along remotely. Philip On 03/13/2015 11:56 AM, akuster wrote: Hello Folks, OEDAM is nearing. If you have not