[yocto] Definition of native toolchain, support for -m32?

2015-04-29 Thread Alex J Lennon
Hi, I'm having some trouble building chromium which I think is due to a definition in chromium.inc which uses the host compiler rather than the Yocto native compile toolchain CC_host=${BUILD_CC} export CC_host CXX_host=${BUILD_CXX} export CXX_host This seems to map to the gcc/g++ on my host

Re: [yocto] Migration from 1.7.1 to 1.8 - kernel-abiversion missing

2015-04-29 Thread Schaumlöffel , Jan
Have you tried setting linux-dummy as the preferred provider for the kernel ? That would skip the build processing doing anything more than satisfying the various kernel dependencies. Ah, that's a good hint, I'll try that. After your build has failed, if you look in

[yocto] initramfs-framework ERROR: There's no '/dev' on rootfs.

2015-04-29 Thread Craig McQueen
I'm trying to use initramfs-framework to mount an overlayfs, and I've got it working mostly. However, I found that when it boots, I get an error: ERROR: There's no '/dev' on rootfs. That comes from initramfs-framework's 'finish' script. I got around it by creating the /dev directory on my

[yocto] Yocto linux-kernel

2015-04-29 Thread Parthiban Kandasamy
i am using beagleboard-xm like board for my custom use. for my development i am using yocto-dora-1.5 as bsp and kernel-2.6.32(i downgraded). while bitbaking kernel, i got error as follows: Log data follows: | DEBUG: Executing shell function do_kernel_checkout | Reinitialized existing Git

Re: [yocto] Yocto linux-kernel

2015-04-29 Thread Gary Thomas
On 2015-04-29 06:38, Parthiban Kandasamy wrote: i am using beagleboard-xm like board for my custom use. for my development i am using yocto-dora-1.5 as bsp and kernel-2.6.32(i downgraded). while bitbaking kernel, i got error as follows: Log data follows: | DEBUG: Executing shell

Re: [yocto] Kernel git repo fetch issue

2015-04-29 Thread Joel (Xi Zhou) Zhou
Thanks Khem. The git repo can accessed by public key, so user/passwd are not need. After changing the URL to this: SRC_URI = git://svcsw...@git-ccxsw.inhouse.com/linux-lsk;bareclone=1;branch=${KBRANCH};protocol=ssh Then “bitbake linux-lsk –c fetch” return no error, but the source folder in

Re: [yocto] Eclipse build of existing cmake project

2015-04-29 Thread Minchev, Todor
Hello Ruben, What I did: I built an image and support for eclipse (meta-ide-support) for beagle bone black (BBB). I am able to create a new project in eclipse and build and run this new project on my hardware. I have an existing CMAKE project which should run on BBB. I know how to

Re: [yocto] Kernel customized do_fetch issue

2015-04-29 Thread Joel (Xi Zhou) Zhou
Thanks Bruce! You really aren't seeing anything land in the build/downloads/git2/ directory structure ? ssh fetches seem to work here. I do see something in build/downloads/git2/git-ccxsw.xxx.com.linux-lsk, but it looks like an empty git. HEAD branches config description hooks

[yocto] Kernel customized do_fetch issue

2015-04-29 Thread Joel (Xi Zhou) Zhou
Hi all, I created a do_fetch() for checkout in-house git repo, which is working fine with OE. do_fetch() { cd ${WORKDIR} rm -rf ${PN}-${PV} git clone ssh://svcsw...@git-ccxsw.inhouse.com/linux-lsk ${PN}-${PV} cd ${PN}-${PV} git checkout ${KBRANCH} } With Yocto, the

Re: [yocto] Kernel customized do_fetch issue

2015-04-29 Thread Bruce Ashfield
On 2015-04-29 02:08 PM, Joel (Xi Zhou) Zhou wrote: But the question has to be asked. Why exactly are you manually fetching the kernel ? The fetcher can take care of most everything. The whole story is starting at the url of our git repo. We have a git URL like:

[yocto] How to create a gz file with compiled files from other recipes

2015-04-29 Thread Francisco Torres
Hello, I have created some recipes which using an external mingw toolchain are able to compile some libraries for windows (e.g. clutter, mx, ) Now I would like to create a compressed file with all the compiled dlls (and if possible header files). How can I do that? (I have tried to create

Re: [yocto] Kernel customized do_fetch issue

2015-04-29 Thread Bruce Ashfield
On 2015-04-29 01:39 PM, Joel (Xi Zhou) Zhou wrote: Hi all, I created a do_fetch() for checkout in-house git repo, which is working fine with OE. do_fetch() { cd ${WORKDIR} rm -rf ${PN}-${PV} git clone ssh://svcsw...@git-ccxsw.inhouse.com/linux-lsk ${PN}-${PV} cd

Re: [yocto] Kernel customized do_fetch issue

2015-04-29 Thread Joel (Xi Zhou) Zhou
But the question has to be asked. Why exactly are you manually fetching the kernel ? The fetcher can take care of most everything. The whole story is starting at the url of our git repo. We have a git URL like: ssh://svcsw...@git-ccxsw.inhouse.com/linux-lsk So the SRC_URI like this,

[yocto] YP 1.8 Release Survey/Retrospective - REMINDER

2015-04-29 Thread Jolley, Stephen K
All, Yocto Project 1.8 released last week! YP provides a major release every six months, and as an open source project we are always working to improve our processes. This survey is for the Yocto Project community to provide feedback into the development process. We would greatly

Re: [yocto] Yocto linux-kernel

2015-04-29 Thread Gary Thomas
On 2015-04-29 07:11, Parthiban Kandasamy wrote: our previous development was in kernel-2.6.32, so we do not like change the kernel level specification for new project because i/o interfaces is like previous project and we are upgrading only processor card only, so we like to go on same kernel.

Re: [yocto] Migration from 1.7.1 to 1.8 - kernel-abiversion missing

2015-04-29 Thread Carl van Schaik
I've just encountered the exact same issue upgrading. Have you tried setting linux-dummy as the preferred provider for the kernel ? That would skip the build processing doing anything more than satisfying the various kernel dependencies. We do explicitly set preferred provider to

Re: [yocto] Yocto linux-kernel

2015-04-29 Thread Bruce Ashfield
On 04/29/2015 08:38 AM, Parthiban Kandasamy wrote: i am using beagleboard-xm like board for my custom use. for my development i am using yocto-dora-1.5 as bsp and kernel-2.6.32(i downgraded). while bitbaking kernel, i got error as follows: Log data follows: | DEBUG: Executing shell

Re: [yocto] Yocto linux-kernel

2015-04-29 Thread nick
On 2015-04-29 09:20 AM, Bruce Ashfield wrote: On 04/29/2015 08:38 AM, Parthiban Kandasamy wrote: i am using beagleboard-xm like board for my custom use. for my development i am using yocto-dora-1.5 as bsp and kernel-2.6.32(i downgraded). while bitbaking kernel, i got error as

Re: [yocto] [meta-raspberrypi] meta-ivi meta-raspberrypi

2015-04-29 Thread Alex J Lennon
On 29/04/2015 15:30, Oliver wrote: Hello I have been working building together the meta-raspberrypi the meta-ivi layers. I have been stuck with configuration/compilation of weston(from mata-ivi layer): 1) You can check the intial thread

Re: [yocto] Migration from 1.7.1 to 1.8 - kernel-abiversion missing

2015-04-29 Thread Bruce Ashfield
On 04/29/2015 03:38 AM, Schaumlöffel, Jan wrote: Have you tried setting linux-dummy as the preferred provider for the kernel ? That would skip the build processing doing anything more than satisfying the various kernel dependencies. Ah, that's a good hint, I'll try that. After your build

[yocto] [meta-raspberrypi] meta-ivi meta-raspberrypi

2015-04-29 Thread Oliver
Hello I have been working building together the meta-raspberrypi the meta-ivi layers. I have been stuck with configuration/compilation of weston(from mata-ivi layer): 1) You can check the intial thread http://lists.genivi.org/pipermail/genivi-meta-ivi/2015-April/000508.html egl provided by

[yocto] Heads up

2015-04-29 Thread Gary Thomas
This is just a note that the recent upgrade of util-linux to version 2.26.1 (from 2.25.2) was much more major than the version change implies. The 'sfdisk' tool changed a lot and will no longer be compatible with many scripts out there that still use it. --

[yocto] Eclipse build of existing cmake project

2015-04-29 Thread Ruben Schwarz
Hi everybody, What I did: I built an image and support for eclipse (meta-ide-support) for beagle bone black (BBB). I am able to create a new project in eclipse and build and run this new project on my hardware. I have an existing CMAKE project which should run on BBB. I know how to write an

Re: [yocto] Heads up

2015-04-29 Thread Robert P. J. Day
On Wed, 29 Apr 2015, Gary Thomas wrote: This is just a note that the recent upgrade of util-linux to version 2.26.1 (from 2.25.2) was much more major than the version change implies. The 'sfdisk' tool changed a lot and will no longer be compatible with many scripts out there that still use

[yocto] Kernel git repo fetch issue

2015-04-29 Thread Joel (Xi Zhou) Zhou
Hi all, We have an in-house git repo for Linux kernel: ssh://svcsw...@git-ccxsw.inhouse.com/linux-lsk So in linux-lsk_3.14.29.bb file, we define: SRC_URI = ssh://svcsw...@git-ccxsw.inhouse.com/linux-lsk;bareclone=1;branch=${KBRANCH} Then 'bitbake linux-lsk' can't fetch the URL: ERROR: Fetcher

Re: [yocto] Kernel git repo fetch issue

2015-04-29 Thread Khem Raj
On Apr 29, 2015, at 8:21 AM, Joel (Xi Zhou) Zhou joel.z...@broadcom.com wrote: So in linux-lsk_3.14.29.bb file, we define: SRC_URI = ssh://svcsw...@git-ccxsw.inhouse.com/linux-lsk;bareclone=1;branch=${KBRANCH} ssh://svcsw...@git-ccxsw.inhouse.com/linux-lsk;bareclone=1;branch=${KBRANCH}

[yocto] Deploying linux-ti-staging initramfs kernel into /boot

2015-04-29 Thread Craig McQueen
I'm using linux-ti-staging kernel 3.14.x with Yocto dizzy, for a build for BeagleBone Black based system. I'd like to use initramfs in my kernel. So I've set INITRAMFS_IMAGE in my linux-ti-staging_3.14.bbappend, and INITRAMFS_IMAGE_BUNDLE = 1 in local.conf. Now in build dir

Re: [yocto] libgomp inclusion

2015-04-29 Thread Suresh Nagarajan
Thanks for the info.. Yes, that does the trick.. Thanks Suresh On Mon, Apr 27, 2015 at 11:40 AM, Khem Raj raj.k...@gmail.com wrote: On Apr 27, 2015, at 11:32 AM, Suresh Nagarajan sureshnagar...@gmail.com wrote: Hi, I'm trying to look to see if OpenMP library is included in my yocto

Re: [yocto] [meta-raspberrypi] meta-ivi meta-raspberrypi

2015-04-29 Thread Alex J Lennon
On 29/04/2015 16:34, Mauro Carvalho Chehab wrote: Em Wed, 29 Apr 2015 16:05:58 +0200 Alex J Lennon ajlen...@dynamicdevices.co.uk escreveu: On 29/04/2015 15:30, Oliver wrote: Hello I have been working building together the meta-raspberrypi the meta-ivi layers. I have been stuck with

[yocto] libgomp inclusion

2015-04-29 Thread Suresh Nagarajan
Hi, I'm trying to look to see if OpenMP library is included in my yocto build. I could not find libgomp library in /usr/lib However, when I look at gcc-runtime.inc, I do notice that RUNTIMETARGET = libssp libstdc++-v3 libgomp PACKAGES = \ ${PN}-dbg \ libstdc++ \ libstdc++-precompile-dev \

[yocto] Migration from 1.7.1 to 1.8 - kernel-abiversion missing

2015-04-29 Thread Carl van Schaik
I've just encountered the exact same issue upgrading. Have you tried setting linux-dummy as the preferred provider for the kernel ? That would skip the build processing doing anything more than satisfying the various kernel dependencies. We do explicitly set preferred provider to

Re: [yocto] [meta-raspberrypi] meta-ivi meta-raspberrypi

2015-04-29 Thread Mauro Carvalho Chehab
Em Wed, 29 Apr 2015 16:05:58 +0200 Alex J Lennon ajlen...@dynamicdevices.co.uk escreveu: On 29/04/2015 15:30, Oliver wrote: Hello I have been working building together the meta-raspberrypi the meta-ivi layers. I have been stuck with configuration/compilation of weston(from mata-ivi