Re: [yocto] Yocto newbie: Need help with recipe

2019-11-08 Thread Rudolf J Streif
I suppose you just removed setting the PACKAGES variable from your recipe? You are including require recipes-qt/qt5/qt5.inc which redefines the PACKAGES variable adding a ${PN}-tools package that consumes what's in {bindir}. I am not sure why you are including qt5.inc as DEPENDS += "qtbase"

Re: [yocto] [meta-gplv2][PATCH] dosfstools: fix out of bound writes

2019-11-08 Thread Ross Burton
On 06/11/2019 12:37, Bagwell, Anthony wrote: > Fix write issues where sprintf writes across both name and ext fields > and drops the final null terminator outside the struct ERROR: dosfstools-2.11-r5 do_patch: Command Error: 'quilt --quiltrc

Re: [yocto] nodejs npm qemux86_64

2019-11-08 Thread Gmail
Great! /Jonas Andersson > 8 nov. 2019 kl. 10:59 skrev Jean-Marie LEMETAYER > : > > Actually I just update my patchset to use ${nonarch_libdir} instead of > ${libdir}. > > This will be on the next patchset version. > > For your information you can check the meta/conf/bitbake.conf file for

Re: [yocto] Yocto newbie: Need help with recipe

2019-11-08 Thread Berthold Höllmann
Rudolf Streif writes: > Hi Berthold, > > Welcome to the Yocto Project. Thank You > > This line is the problem with your recipe: > > PACKAGES = "${PN}" > > This tells the build system to only create one package, the default > package. Because this line FILES_${PN} = "${bindir}" tells the build

Re: [yocto] nodejs npm qemux86_64

2019-11-08 Thread Jean-Marie LEMETAYER
Actually I just update my patchset to use ${nonarch_libdir} instead of ${libdir}. This will be on the next patchset version. For your information you can check the meta/conf/bitbake.conf file for others target filesystem paths. Best regards, Jean-Marie On Nov 8, 2019, at 10:46 AM, Jean-Marie

Re: [yocto] nodejs npm qemux86_64

2019-11-08 Thread Jean-Marie LEMETAYER
Hi Jonas, I am currently refactoring / updating the npm handling in Yocto: http://lists.openembedded.org/pipermail/openembedded-core/2019-October/288352.html http://lists.openembedded.org/pipermail/bitbake-devel/2019-October/020449.html Your point is very interesting, I will take it into account