Re: [yocto] package error for custom devtool recipe

2017-10-02 Thread Paul Eggleton
Hi Greg, On Tuesday, 3 October 2017 1:30:25 PM NZDT Greg Wilson-Lindberg wrote: > I get some package errors when I build this: > > ERROR: QA Issue: acsccid: Files/directories were installed but not shipped > in any package: > /usr/lib/pcsc/drivers/ifd-acsccid.bundle/Contents/Info.plist > /usr

[yocto] package error for custom devtool recipe

2017-10-02 Thread Greg Wilson-Lindberg
I've got a recipe that I'm trying to get working that was created by devtool: # Recipe created by recipetool # This is the basis of a recipe and may need further editing in order to be fully functional. # (Feel free to remove these comments when editing.) # WARNING: the following LICENSE and LIC

Re: [yocto] problem adding first layer to yocto

2017-10-02 Thread Cal Sullivan
Your layer appears to only be adding a new recipe. It won't be built unless you tell it to be built, or you build something that depends on it, or you add it to the image you're building. So your options are: bitbake example add IMAGE_INSTALL_append = " example" to your local.conf have another r

Re: [yocto] problem adding first layer to yocto

2017-10-02 Thread Mark Hieber
sorry, fat-fingered send Anyway, I created this layer. I had it create a default recipe, I looked at all the files, they all seem to be correct. I then ran source oe-init-build-env and then edited build/conf/bblayers.conf, it has BBLAYERS ?= " \ /yocto/poky/meta \ /yocto/poky/meta-poky \

[yocto] problem adding first layer to yocto

2017-10-02 Thread Mark Hieber
Hi, I am just starting out with yocto, and I have an issue. I followed the steps in http://www.yoctoproject.org/docs/2.3.2/mega-manual/mega-manual.html#creating-a-general-layer-using-the-yocto-layer-script, create meta-mylayer (in the /yocto/poky directory), #/yocto/poky tree meta-mylayer/ meta-

Re: [yocto] Errors building with Windows Subsystem for Linux (aka Bash on Ubuntu on Windows)

2017-10-02 Thread Bryan Evenson
Alex, > -Original Message- > From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] > On Behalf Of Alexander Kanavin > Sent: Sunday, October 01, 2017 4:20 AM > To: Dominig ar Foll (Intel Open Source) ; > yocto@yoctoproject.org > Subject: Re: [yocto] Errors building

[yocto] [qa-tools][PATCH] scripts: Add ptest-parser to create reports for pTest executions

2017-10-02 Thread jose . perez . carranza
From: Jose Perez Carranza Add ptest-parser.py scrip that creates a file with the report of pTest execution compared with the previous results provided, the data stored on the file is in wikimedia format to be copied and pasted on the new created wiki for pTest results of QA cycle. Signed-off-by:

Re: [yocto] Configuration fragments not making it into kernel configuration

2017-10-02 Thread Bruce Ashfield
On 2017-10-02 11:23 AM, Jonathan Haws wrote: I know I can fix this by simply doing a menuconfig, but that isn't the proper way to do it - I have multiple BSP layers that do the same thing and they all behave in the same way. What am I doing wrong?  I've attached my layer that contains the recipe

[yocto] [opkg-utils PATCH] opkg.py: Fix run-time error in call to ArFile

2017-10-02 Thread Jeffrey Pautler
Signed-off-by: Jeffrey Pautler --- opkg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opkg.py b/opkg.py index 4d6f020..9131755 100644 --- a/opkg.py +++ b/opkg.py @@ -168,7 +168,7 @@ class Package(object): tar = tarfile.open(fn, "r", f) tarS

Re: [yocto] RFC: autotooler: generation of "configure.ac" and "Makefile.am" using Kconfig

2017-10-02 Thread Aaron Schwartz
Are you looking to use menuconfig to configure your packages? BusyBox does this [0] pretty well in my experience, you might take a look at how they've put that together. 0) https://busybox.net/FAQ.html#configure On Sat, Sep 30, 2017 at 10:49 AM, Ulf Samuelsson wrote: > Have a need to convert a

Re: [yocto] eSDK install script failure

2017-10-02 Thread Andrea Galbusera
Hi Paul, On Tue, Sep 26, 2017 at 7:18 AM, Andrea Galbusera wrote: > Paul, > > On Tue, Sep 26, 2017 at 6:33 AM, Paul Eggleton < > paul.eggle...@linux.intel.com> wrote: > >> Hi Andrea, >> >> On Tuesday, 26 September 2017 4:33:46 AM NZDT Andrea Galbusera wrote: >> > I'm back to this issue after the

Re: [yocto] poky using native pkg_resources module

2017-10-02 Thread Alejandro Hernandez
Thanks Ulf, I will provide a fix soon. Alejandro On 09/30/2017 05:27 PM, Ulf Samuelsson wrote: Den 2017-09-30 kl. 21:32, skrev Alejandro Hernandez: Hey Ulf, Yes, the problem is that the bmap-tools script is trying to be executed by python3 (HOST) but it should be executed by the nativ

[yocto] sstate and multiconfigs

2017-10-02 Thread Anders Montonen
Hi, We've been trying out a setup using multiconfigs to select the source control branch some set of recipes to build. The building part goes well, but whenever we run package-index, the packages built using this scheme are deleted. The basic setup is that we have one multiconfig per branch

Re: [yocto] Problems when adding custom layer

2017-10-02 Thread Burton, Ross
On 2 October 2017 at 16:55, Aaron Sarginson wrote: > When added, I receive parsing errors at the inherit “systemd” line. > No quotes needed, just: inherit systemd Ross -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/l

[yocto] Problems when adding custom layer

2017-10-02 Thread Aaron Sarginson
Hello, I am trying to add a folder and some files to a raspberry pi build which does build successfully with the latest Yocto. When added, I receive parsing errors at the inherit “systemd” line. The idea is that the web-files folder should be transferred in its entirety, rules.sh and the executa

Re: [yocto] RFC: autotooler: generation of "configure.ac" and "Makefile.am" using Kconfig

2017-10-02 Thread Leonardo Sandoval
On Sat, 30 Sep 2017 16:49:09 +0200 Ulf Samuelsson wrote: > Have a need to convert a large number of libraries to use autotools. > > I came up with the following idea: I got poor experience in enabling autotools into a project but have you ping the autotools community to discuss your approach?

Re: [yocto] Configuration fragments not making it into kernel configuration

2017-10-02 Thread Jonathan Haws
> > > I know I can fix this by simply doing a menuconfig, but that > > > isn't > > > the > > > proper way to do it - I have multiple BSP layers that do the same > > > thing > > > and they all behave in the same way. > > > > > > What am I doing wrong?  I've attached my layer that contains the > > >

Re: [yocto] Configuration fragments not making it into kernel configuration

2017-10-02 Thread Jonathan Haws
On Mon, 2017-10-02 at 10:54 -0400, Bruce Ashfield wrote: > On 09/30/2017 11:22 PM, Jonathan Haws wrote: > > > > All, > > > > I've created a bbappend that appends to the linux-yocto-rt recipe > > to > > simply apply configuration fragments.  I've been using this recipe > > for > > some time (thro

[yocto] Yocto Project Status WW40’17

2017-10-02 Thread Jolley, Stephen K
Current Dev Position: YP 2.4 M4 - rc1 is in QA Next Deadline: YP 2.4 Final Cut off has passed. SWAT team rotation: Maxin -> Cal on Sept. 29, 2017. SWAT team rotation: Cal -> Joshua on Oct. 6, 2017. https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Key Status/Updates: ·

Re: [yocto] mono 5.0.1.1 TypeLoadException

2017-10-02 Thread Alex J Lennon
Hi Robin, If you supply a test case I’ll take a look. Regards, Alex > On 2 Oct 2017, at 15:02, MUGRIDGE Robin wrote: > > Hi, > > I am using mono with Krogoth. The current version of mono we are building > with is 4.2.2.30. > > I am trying to move mono forward to 5.0.1.1 to avoid an issu

[yocto] mono 5.0.1.1 TypeLoadException

2017-10-02 Thread MUGRIDGE Robin
Hi, I am using mono with Krogoth. The current version of mono we are building with is 4.2.2.30. I am trying to move mono forward to 5.0.1.1 to avoid an issue in the HttpListener class, but now get a TypeLoadException which I assume is a missing assembly or a build configuration error, but I'm

Re: [yocto] Configuration fragments not making it into kernel configuration

2017-10-02 Thread Bruce Ashfield
On 09/30/2017 11:22 PM, Jonathan Haws wrote: All, I've created a bbappend that appends to the linux-yocto-rt recipe to simply apply configuration fragments. I've been using this recipe for some time (through many releases) but since I moved to the morty branch my fragments aren't getting applie

Re: [yocto] [meta-raspberrypi][PATCH] Revert "qtbase: Enable EGLFS support"

2017-10-02 Thread Andrei Gherzan
On Wed, Sep 27, 2017 at 02:45:07PM -0300, Otavio Salvador wrote: > Hello Martin, > > On Wed, Sep 27, 2017 at 2:34 PM, Martin Jansa wrote: > ... > >> Martin, do you have any idea how other alternative we have? > > > > In theory you can set QT_PACKAGES_ARCH to MACHINE_ARCH in rpi-base.inc > > to mak