Re: [yocto] File system for alternate partition

2014-06-25 Thread Paul Eggleton
On Tuesday 24 June 2014 17:09:29 Bollinger, Seth wrote: > >I guess I didn¹t think about using a full image as I would need to remove > >a bunch of stuff, but maybe that is the best way. That way I can keep the > >flexibility of defining recipes that would be installed to my data > >partition image

[yocto] Unable to parse conf/bitbake.conf

2014-06-25 Thread Kashyap Gada
Trying to build Cross Compile toolchain $ bitbake meta-ide-support ERROR: Traceback (most recent call last): File "/home/kashyap/kashyap/yocto/poky/bitbake/lib/bb/cookerdata.py", line 163, in wrapped return func(fn, *args) File "/home/kashyap/kashyap/yocto/poky/bitbake/lib/bb/cookerdata.

Re: [yocto] File system for alternate partition

2014-06-25 Thread Bollinger, Seth
>You could just delete these within a function added to >ROOTFS_POSTPROCESS_COMMAND, and that's probably the way to deal with it >for >now; however for the future I do think the build system ought to be able >to >clean these files up itself if they aren't supposed to be there. I've >created a >

Re: [yocto] File system for alternate partition

2014-06-25 Thread Bollinger, Seth
>It looks like the POSTPROCESS commands are run too early. Subsequent >actions depend on that directory structure (pre-linking, etc.). It looks >like I would need some way to hook _cleanup() in the RootFS subclass. Actually scratch the above comment. I wasn¹t reading the log spew correctly. T

[yocto] Create own image type

2014-06-25 Thread Isak Lichtenstein
Hi all, I'm trying to create my own image type. I thought that it would be enough to create a myImage.bbclass file implementing IMAGE_CMD_myImage and extending IMAGE_TYPES += " myImage". But this isn't working and I didn't find anything in the manual. It this possible at all ( can't imagine th

Re: [yocto] File system for alternate partition

2014-06-25 Thread Paul Eggleton
On Wednesday 25 June 2014 13:33:46 Bollinger, Seth wrote: > >It looks like the POSTPROCESS commands are run too early. Subsequent > >actions depend on that directory structure (pre-linking, etc.). It looks > >like I would need some way to hook _cleanup() in the RootFS subclass. > > Actually scra

Re: [yocto] Create own image type

2014-06-25 Thread Lukáš Novotný
Hello, I can’t directly help you with this, however I recommend taking a look at meta-raspberrypi ( https://github.com/djwillis/meta-raspberrypi ) as it adds it’s own image type “rpi-sdimg”. Lukas On 25 Jun 2014, at 16:04, Isak Lichtenstein wrote: > Hi all, > > I’m trying to create my own

Re: [yocto] File system for alternate partition

2014-06-25 Thread Bollinger, Seth
>Are you sure? IMAGE_POSTPROCESS_COMMAND runs after all of the image files >have >been created; at that time, the contents of the image has already been >compressed or otherwise combined into the final output file(s), so I >would think >that would be too late to modify the contents. I just unzi

Re: [yocto] File system for alternate partition

2014-06-25 Thread Paul Eggleton
On Wednesday 25 June 2014 15:22:29 Bollinger, Seth wrote: > >Are you sure? IMAGE_POSTPROCESS_COMMAND runs after all of the image files > >have > >been created; at that time, the contents of the image has already been > >compressed or otherwise combined into the final output file(s), so I > >would t

[yocto] Multilib

2014-06-25 Thread atulkumar singh
Hi All, I am trying to build toolchain for arm architecture with multilib support. And my requirement is i need different library file for different features and architecture. Could anyone please help me on the same. Thanks and regards, Atul -- ___ yoc

[yocto] Bitbake: error in cachedpath.py

2014-06-25 Thread Markus Eich
Dear all, I am setting up Yocto to compile my kernel for odroid xu. During the package phase of building the kernel, I get an error in cachedpath.py DEBUG: Executing python function sstate_task_prefunc DEBUG: Python function sstate_task_prefunc finished DEBUG: Executing pytho

Re: [yocto] Create own image type

2014-06-25 Thread Maxim Radugin
Hello Isak, You are no the right way. You have to add IMAGE_CLASSES += "myImage" somewhere in your conf files. I prefer distro.conf for my own distro, but perhaps you can add it to local.conf as well. BR, Maxim. On Wed, Jun 25, 2014 at 5:04 PM, Isak Lichtenstein < isak.lichtenst...@kistler.c

[yocto] seek help: I want to get SRC_URI, SRC_URI[md5sum] and SRC_URI[sha256sum] of compiled recipes

2014-06-25 Thread ya...@cn.fujitsu.com
Hi everyone I want to get SRC_URI,SRC_URI[md5sum] and SRC_URI[sha256sum] of compiled recipes. How to achieve it? e.g. # bitbake core-image-minimal I want to get SRC_URI,SRC_URI[md5sum] and SRC_URI[sha256sum] of compiled BB files, including native BB files. ---

Re: [yocto] seek help: I want to get SRC_URI, SRC_URI[md5sum] and SRC_URI[sha256sum] of compiled recipes

2014-06-25 Thread Robert Yang
On 06/26/2014 09:44 AM, ya...@cn.fujitsu.com wrote: Hi everyone I want to get SRC_URI,SRC_URI[md5sum] and SRC_URI[sha256sum] of compiled recipes. How to achieve it? e.g. # bitbake core-image-minimal I want to get SRC_URI,SRC_URI[md5sum] and SRC_URI[sha256sum] of compiled BB files, includin

Re: [yocto] seek help: I want to get SRC_URI, SRC_URI[md5sum] and SRC_URI[sha256sum] of compiled recipes

2014-06-25 Thread ya...@cn.fujitsu.com
> > On 06/26/2014 09:44 AM, ya...@cn.fujitsu.com wrote: > > Hi everyone > > > > I want to get SRC_URI,SRC_URI[md5sum] and SRC_URI[sha256sum] of > compiled recipes. > > How to achieve it? > > > > e.g. > > # bitbake core-image-minimal > > > > I want to get SRC_URI,SRC_URI[md5sum] and SRC_URI[sha256s

Re: [yocto] seek help: I want to get SRC_URI, SRC_URI[md5sum] and SRC_URI[sha256sum] of compiled recipes

2014-06-25 Thread Robert Yang
On 06/26/2014 10:45 AM, ya...@cn.fujitsu.com wrote: On 06/26/2014 09:44 AM, ya...@cn.fujitsu.com wrote: Hi everyone I want to get SRC_URI,SRC_URI[md5sum] and SRC_URI[sha256sum] of compiled recipes. How to achieve it? e.g. # bitbake core-image-minimal I want to get SRC_URI,SRC_URI[md5sum]

Re: [yocto] seek help: I want to get SRC_URI, SRC_URI[md5sum] and SRC_URI[sha256sum] of compiled recipes

2014-06-25 Thread ya...@cn.fujitsu.com
I see. Thank you ^_^ Thanks Yao Xinpan > On 06/26/2014 10:45 AM, ya...@cn.fujitsu.com wrote: > >> > >> On 06/26/2014 09:44 AM, ya...@cn.fujitsu.com wrote: > >>> Hi everyone > >>> > >>> I want to get SRC_URI,SRC_URI[md5sum] and SRC_URI[sha256sum] of > >> compiled recipes. > >>> How to achieve it?

[yocto] Yocto on X86 Question

2014-06-25 Thread Albert K
Hi, I am a newbie and would like help to point me the right direction with regards to yocto project on X86 system with CF card as boot disk with AMI or Phoenix Bios. I have a few questions listed below 1) How do i build a project with read-only filesystem with an overylay filesystem ? someth

[yocto] Yocto Project 1.7_M1.rc1 now available for testing

2014-06-25 Thread Flanagan, Elizabeth
http://autobuilder.yoctoproject.org/pub/releases/yocto-1.7_M1.rc1 bitbake b82f724c271c43218dc28440219adcea968e2a26 eclipse-poky-juno 26bfc407781aa185f244a47ba63120343cee4a37 eclipse-poky-kepler 4a167fd662262ebdaa3cf0d332ac0debb52d7904 meta-fsl-arm ab90b896f4bf09a8ced37c6e1511686217d053b9 meta-fsl-