Re: [yocto] poky master issue with kernel and gcc version

2016-06-01 Thread Bruce Ashfield
On 2016-06-01 10:48 PM, Eystein Måløy Stenberg wrote: Hi, I am trying to build a vexpress-qemu machine targe from poky's master branch, but I get this error compiling the kernel: | /home/yocto/poky/build/tmp/work-shared/vexpress-qemu/kernel-source/include/linux/compiler-gcc.h:121:30: fatal erro

[yocto] poky master issue with kernel and gcc version

2016-06-01 Thread Eystein Måløy Stenberg
Hi, I am trying to build a vexpress-qemu machine targe from poky's master branch, but I get this error compiling the kernel: | /home/yocto/poky/build/tmp/work-shared/vexpress-qemu/kernel-source/include/linux/compiler-gcc.h:121:30: fatal error: linux/compiler-gcc6.h: No such file or directory

Re: [yocto] Per image customizations

2016-06-01 Thread Oleksandr Poznyak
Here is the content of bbappend recipe for base-files recipe: FILESEXTRAPATHS_append := "${THISDIR}/${PN}" SRC_URI += "file://fstab-flash \ file://fstab-regular \ " PACKAGES += " ${PN}-flash ${PN}-regular" CONFFILES_${PN}-flash = "${CONFFILES_${PN}}" CONFFILES_${PN}-regular = "${

Re: [yocto] [meta-raspberrypi][PATCH 1/6] linux-raspberrypi: Allow override of PV

2016-06-01 Thread Paul Barker
On Tue, 31 May 2016 10:39:03 +0300 Khem Raj wrote: > On May 30, 2016 3:15 PM, "Paul Barker" wrote: > > > > > > I'm trying to build from a source archive instead of a git > > repository (to avoid a ~1.3GB git clone operation) so the use of > > ${SRCPV} is causing me trouble. > > > > Can you over

Re: [yocto] Recipe Debug - QA Issue

2016-06-01 Thread Paul DeMetrotion
That removed the QA error. Thanks you. Problems remain because none of the 12 driver files are being copied to the image while the two shell script files are copied. Paul DeMetrotion Software Guru WinSystems, Inc. (972) 571-8657 www.winsystems.com From: Oleksandr Poz

[yocto] [meta-cgl][PATCH 2/2] ocfs2-tools: Fix QA WARNINIG

2016-06-01 Thread Armin Kuster
NOTE: /home/akuster/oss/clean/meta-cgl/meta-cgl-common/recipes-cgl/ocfs2-tools/ocfs2-tools_1.8.4.bb: base_contains is deprecated, please use bb.utils.contains instead. Signed-off-by: Armin Kuster --- meta-cgl-common/recipes-cgl/ocfs2-tools/ocfs2-tools_1.8.4.bb | 2 +- 1 file changed, 1 inserti

[yocto] [meta-cgl][PATCH 1/2] heartbeat: Fix new qa WARNINGS

2016-06-01 Thread Armin Kuster
NOTE: /home/akuster/oss/clean/meta-cgl/meta-cgl-common/recipes-cgl/heartbeat/heartbeat_3.0.6.bb: base_contains is deprecated, please use bb.utils.contains instead Signed-off-by: Armin Kuster --- meta-cgl-common/recipes-cgl/heartbeat/heartbeat_3.0.6.bb | 2 +- 1 file changed, 1 insertion(+), 1

Re: [yocto] Recipe Debug - QA Issue

2016-06-01 Thread Oleksandr Poznyak
oops! FILES_${PN} += "${base_libdir}" That's it On Wed, Jun 1, 2016 at 6:42 PM, Paul DeMetrotion < pdemetrot...@winsystems.com> wrote: > Thanks for your suggestions. I changed it to the simple one-line > modification but still have the same issue. I even commented the > FILES_${PN} line and hav

Re: [yocto] Fwd: Changelog creation for a list of recipes

2016-06-01 Thread Mark Hatle
On 6/1/16 7:54 AM, Oleksandr Poznyak wrote: > Hi, > > I believe that it would be great to have a special variable that triggers > changelog creation for the specific recipe. I've had some requests from customers to automatically generate changelogs for both recipes and packages. I've not yet beg

Re: [yocto] Per image customizations

2016-06-01 Thread Diego
In data mercoledì 1 giugno 2016 15:25:09, Oleksandr Poznyak ha scritto: > Don't forget to add your fstab/inittab files into CONFFILES_${PN} cause if > the package that includes them will be changed and You'll update it via > package system, your POSTPROCESS hacks will be overwritten. > > Anyway, i

Re: [yocto] Recipe Debug - QA Issue

2016-06-01 Thread Paul DeMetrotion
Thanks for your suggestions. I changed it to the simple one-line modification but still have the same issue. I even commented the FILES_${PN} line and have the same issue. It appears that the problem is with the do_install_append() section. Paul DeMetrotion Software Guru WinSystems, Inc. (972)

Re: [yocto] Recipe Debug - QA Issue

2016-06-01 Thread Oleksandr Poznyak
Hi, 1) It's more common to use FILES_${PN} += ... 2) Please, remove ${D} from FILES_${PN} Try this: FILES_${PN} += " \ ${kmoddir}/onebox_common_gpl.ko \ ${kmoddir}/onebox_gpl.ko \ ${kmoddir}/onebox_nongpl.ko \ ${kmoddir}/onebox_wlan_gpl.ko \ ${kmoddir}/onebox_wlan_nongpl.ko \

[yocto] Recipe Debug - QA Issue

2016-06-01 Thread Paul DeMetrotion
I have created a simple (?) recipe to copy some existing drivers and scripts into my kernel image. I am getting the following error when I attempt to bitbake the recipe. Is this a license issue? ERROR: QA Issue: rs9113: Files/directories were installed but not shipped /lib /lib/modules /li

[yocto] Fwd: Changelog creation for a list of recipes

2016-06-01 Thread Oleksandr Poznyak
Hi, I believe that it would be great to have a special variable that triggers changelog creation for the specific recipe. For example: PN = "my_recipe" SRC_URI = "git://${SOME_GIT_REPO};protocol=ssh" SRCREV = "${AUTOREV}" PV = "1+git${SRCPV}" CHANGELOG = "1" This should produce ${DEPLOY_DIR}/

Re: [yocto] Per image customizations

2016-06-01 Thread Oleksandr Poznyak
Don't forget to add your fstab/inittab files into CONFFILES_${PN} cause if the package that includes them will be changed and You'll update it via package system, your POSTPROCESS hacks will be overwritten. Anyway, its better to avoid POSTPROCESS if possible. 1) Create *.bbappend recipe base-files

[yocto] [Solved] Antwort: Re: How to include a own libary into the toolchain(SDK) for an embeeded Linux generated by Yocto?

2016-06-01 Thread S . Jaritz
Hej Problem solved! It worked like described by Rebert and on Stack Overflow. Thanks for the help Stefan Jaritz ESA Elektroschaltanlagen Grimma GmbH Broner Ring 30 04668 Grimma Telefon: +49 3437 9211 176 Telefax: +49 3437 9211 26 E-Ma

[yocto] Antwort: Re: How to include a own libary into the toolchain(SDK) for an embeeded Linux generated by Yocto?

2016-06-01 Thread S . Jaritz
Thanks for the reply Like you thought - I want to include the lib + headers. I included the "myLib" via IMAGE_INSTALL_append = " myLib" and have a project IMAGE_INSTALL_append = " myProject" which has in it's recipe DEPENDS = "myLib" In my eyes this should be enough. When looking into the

Re: [yocto] How to include a own libary into the toolchain(SDK) for an embeeded Linux generated by Yocto?

2016-06-01 Thread Robert Berger
Hi, On 05/31/2016 06:03 PM, s.jar...@esa-grimma.de wrote:> Hej, > > I am looking for an example where is shown how to include an own library > into the toolchain. > > Let's call the library "myLib". For it I created an recipe "myLib.bb" > and added: > > BBCLASSEXTEND = "native nativesdk" Like