Re: [yocto] patch_do_patch error for local kernel rep..,

2015-02-04 Thread Jegan Chandru
s/built-in.o > | ERROR: oe_runmake failed > | WARNING: > /home/srikanth/Desktop/work/pavan/Minizap/wandboard/yocto/fsl-community-bsp/build/tmp/work/wandboard_quad-poky-linux-gnueabi/linux-wandboard/3.0.35-r0/temp/run.do_compile.6787:1 > exit 1 from > | exit 1 > | ERROR: Function f

Re: [yocto] patch_do_patch error for local kernel rep..,

2015-02-04 Thread Jegan Chandru
It just says the patch drm-vivante-Add-00-sufix-in-returned-bus-Id.patch is already applied in the source code. On Wed, Feb 4, 2015 at 1:29 AM, Pavan Kumar B wrote: > > Hi, > > I was trying to set the local repo for kernel and build the yocto image. > For that > > I have set SRC_URI as below lo

Re: [yocto] SPR issue while booting qemu for POWER PC ppce500v2

2015-01-30 Thread Jegan Chandru
I guess it has something to do with, http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=b813bdebb36501500e86fea5f7e15b4b15ea0902 https://bugzilla.yoctoproject.org/show_bug.cgi?id=6687 In other words, you should try with the latest images if any. On Fri, Jan 30, 2015 at 4:50 PM, amruuta

Re: [yocto] mount.nfs -> how i include nfs-utils

2015-01-22 Thread Jegan Chandru
IMAGE_INSTALL_append = "nfs-util-client" in local.conf is what you are looking for. You need to bitbake the image again. So if some packages are not available in rootfs by default, you could follow this method. Check here for your quick reference, https://wiki.yoctoproject.org/wiki/FAQ ​Please

Re: [yocto] prelink & mklibs problem

2014-12-08 Thread Jegan Chandru
> Regards, > Qiang > > On Mon, Dec 8, 2014 at 3:28 PM, Jegan Chandru wrote: > >> Hi, >> >> I think it has to do with the ld-linux-armhf.so.3. May be you should >> tell prelink that you have hard float ARM ABI to prelink for, than >> ld-linux.so.3 .

Re: [yocto] prelink & mklibs problem

2014-12-07 Thread Jegan Chandru
Hi, I think it has to do with the ld-linux-armhf.so.3. May be you should tell prelink that you have hard float ARM ABI to prelink for, than ld-linux.so.3 . It means you need to add ld-linux-armhf.so.3 as a dynamic linker. You should patch the prelink source to get this done. HTH. -JC On Fri,

Re: [yocto] How to suppress error: canonicalization unexpectedly shrank by one character

2014-09-24 Thread Jegan Chandru
Hi, This should help I guess, http://lists.openembedded.org/pipermail/openembedded-core/2013-April/077607.html Also just a thought, can you please check in your package that you are building, whether there is instances of double forward slash which may cause split_and_strip_files to fail in do_p

Re: [yocto] Building image without kernel

2014-07-21 Thread Jegan Chandru
​Hi, You can skip kernel build by a custom python function. It is supported by bitbake. There is an event called '*SkipPackage*' I did this for my custom distro in dylan. You can add this in your linux.bbappend. python __anonymous () { import bb, re nokb = (re.match('*insert ur distroname

Re: [yocto] Setting default system python version

2014-05-25 Thread Jegan Chandru
There is variable called PREFERRED_VERSION_pkgname ?= "version" where you can set the desired version of any packages available.(if thats what you are looking for) Try adding it in your image recipe or conf file. Also once added, you can check by executing 'bitbake -s' and see preferred version tab

Re: [yocto] mount.nfs missing

2014-04-29 Thread Jegan Chandru
Hi, Could you please try adding nfs-utils-client?? I see this in nfs-utils recipe, {{{ FILES_${PN}-client = "${base_sbindir}/*mount.nfs* ${sbindir}/*statd \ }}} -JC On Tue, Apr 29, 2014 at 8:31 PM, Rich Wilson wrote: > I have a working target hardware, except that /sbin/mount.nfs > is missi

Re: [yocto] quilt-native fails on tar version 1.27.1

2014-04-29 Thread Jegan Chandru
Hi, Only Yocto version 1.6 supports Ubuntu 14.04 LTS. I hope you are using that. if you are using <1.6 Ubuntu 14.04 LTS is not in supported distros. http://www.yoctoproject.org/docs/1.6/ref-manual/ref-manual.html#detailed-supported-distros http://www.yoctoproject.org/docs/1.5/ref-manual/ref-manua

Re: [yocto] Basic query regarding porting

2014-02-25 Thread Jegan Chandru
Hi, You should start reading the yocto documents. ;) Start here, https://www.yoctoproject.org/documentation/current You should focus on, http://www.yoctoproject.org/docs/current/yocto-project-qs/yocto-project-qs.html http://www.yoctoproject.org/docs/current/bsp-guide/bsp-guide.html As you have me

Re: [yocto] xerces-c come into ERROR: Function failed: do_qa_configure

2013-09-30 Thread Jegan Chandru
Hi, It is saying just that, there been a host contamination, which means bitbake is referring host for some libs and headers which it should not. It is from meta/class/insane.bbclass. You should look in log.do_configure in tmp/worktemp/ for fixing this or the config.log file located in tmp/wor

Re: [yocto] How to pack non striped valgrind image into squashfs image

2013-09-23 Thread Jegan Chandru
OK. On Tue, Sep 24, 2013 at 11:29 AM, Amit Tomer wrote: > Yes Jegan ,that's what we did yesterday and we have now non -striped .bins > Thanks for your response > > > On Tue, Sep 24, 2013 at 10:57 AM, Jegan Chandru wrote: > >> Hi Amit, >> >> If you

Re: [yocto] Add nfs package to image minimal for atom-pc

2013-09-16 Thread Jegan Chandru
I reckon it should be packagegroup-core-nfs-server??! Can you try adding this in local.conf? On Mon, Sep 16, 2013 at 3:07 PM, Jack wrote: > Hi, > > I built a core-image-minimal for atom-pc. Then, I want to add it nfs and > ssh > packages. I added IMAGE_INSTALL_append_pn-core-image-minimal = " >

Re: [yocto] Add new module to recipe + meta-toolchain-qt: add gdb

2013-09-10 Thread Jegan Chandru
Hello, On Tue, Sep 10, 2013 at 4:53 PM, Jose Mª Ferreiro wrote: > Hello > > We have compiled meta-toolchain-qt (Yocto dylan). Now we can run QT > applications on Desktop (Ubuntu 12.04) and on target (iMX6 sabre Lite > board). We can also debug the applications on board, but we can not debug > on

Re: [yocto] Fwd: misleading dependencies between packages

2013-09-10 Thread Jegan Chandru
On Tue, Sep 10, 2013 at 12:57 PM, JC wrote: > Hi JCP > > Thanks for your information, here are the next questions: > > libuuid is provided by util-linux. Check in meta/recipes-core/util-linux > for more details. > > r3 is PR that util-linux has in dylan 9.0.1. Unless you change the PR, > it wi

[yocto] Fwd: misleading dependencies between packages

2013-09-10 Thread Jegan Chandru
Hello, libuuid is provided by util-linux. Check in meta/recipes-core/util-linux for more details. r3 is PR that util-linux has in dylan 9.0.1. Unless you change the PR, it will be r3 only. I am not sure how you end up with r5. May be you need to (re)build util-linux if you need libuuid. Also You s

Re: [yocto] OE recipes- linphone build error in poky-9.0.0 build environment

2013-08-30 Thread Jegan Chandru
Hi Amit, ERROR: Fetcher failure for URL: ' > http://download.savannah.nongnu.org/releases/linphone/1.6.x/sources/linphone-1.6.0.tar.gz'. > No checksum specified for > /home/yocto/YOCTO/poky-dylan-9.0.0/build/downloads/linphone-1.6.0.tar.gz, > please add at least one to the recipe: > SRC_URI[md5su

Re: [yocto] Build packages-ssh, telnet, alsa and other package for arm

2013-08-20 Thread Jegan Chandru
making much difference as you say, leaving to look manually and try to reduce the image size. On Tue, Aug 20, 2013 at 2:53 PM, Burton, Ross wrote: > On 17 August 2013 16:45, Jegan Chandru wrote: > > About the image size, it really depends on what package system are you > > usin

Re: [yocto] Build packages-ssh, telnet, alsa and other package for arm

2013-08-17 Thread Jegan Chandru
Hi Amit, Please refer, https://www.yoctoproject.org/docs/current/poky-ref-manual/poky-ref-manual.html#var-IMAGE_INSTALL where u can add the packages u need in ur image. core-image-sato is a full linux system with GUI, it is obvious that the size will be somewhat big. About the image size, it real

[yocto] meta-toolchain - python not populated properly in sdk

2012-07-08 Thread Jegan Chandru
Hi, I have a little trouble while building meta-toolchain for my distro. This is for arm architecture on 64 bit ubuntu 12.04 machine. I use default "bitbake meta-toolchain" to create sdk. It created ok, but when I check for python, it doesnt include everything from build dir. I tried to execute so

Re: [yocto] Is there anyway to get patched source tar file for gcc while building srpm?

2012-06-11 Thread Jegan Chandru
<> Added poky and oe-core. anyone? On Thu, Jun 7, 2012 at 8:23 PM, Jegan Chandru wrote: > Hi, > > Framework - poky-denzil-7.0 > arch - x86_64 > > Is there anyway to get patched source tar file for gcc while building > srpm? I have checked the srpms created and f

[yocto] Is there anyway to get patched source tar file for gcc while building srpm?

2012-06-07 Thread Jegan Chandru
Hi, Framework - poky-denzil-7.0 arch - x86_64 Is there anyway to get patched source tar file for gcc while building srpm? I have checked the srpms created and found gcc srpms has only the logs_with_scripts tar file and not the patched source. I have configured "archive-patched-source" in local.co

Re: [yocto] How to set a DISTRO_FEATURE?

2012-05-22 Thread Jegan Chandru
Hi Chris, You can either set it in local.conf as you have mentioned or you can define the variable in your machine conf. You can do something like this, require conf/distro/include/default-distrovars.inc DISTRO_FEATURES = "alsa ... " Please check if

Re: [yocto] adding package nss in rootfs failed with dependency "/usr/local/bin/perl"

2012-04-25 Thread Jegan Chandru
> This is a bug in the nss package. It has an executable shell script that has a: > #! /usr/local/bin/perl > in it, which causes RPM to add a dependency on that specific path, and nothing > is providing the path. > The fix is either, decide this is a sample/demo shell script and remove it from

[yocto] adding package nss in rootfs failed with dependency "/usr/local/bin/perl"

2012-04-24 Thread Jegan Chandru
Hi, I have cross compiled NSS 3.13.1 for x86 64 bit environment, but when I try to add NSS package in rootfs, i am getting the following error, *error: Failed dependencies: /usr/local/bin/perl is needed by nss-3.13.1-r0.x86_64* I know perl is needed for nss, but the path which is trying t

Re: [yocto] [Yocto] How to remove a particular package or packages

2012-04-12 Thread Jegan Chandru
Tomas, > The basic package selection in the Poky/Yocto images is done on basis of > the DISTRO_FEATURES variable, so you need to set this somewhere suitable > to only include the components you need (iirc, the default package > selection is quite rich). Thanks for pointing this out. I am using th

[yocto] [Yocto] How to remove a particular package or packages collection for an image

2012-04-10 Thread Jegan Chandru
Hi, I am using Yocto milestone release 1.1.1 for my custom root filesystem image creation. I just need some help in achieving it successfully. I wrote a custom task bb file which defines/includes the packages i need in my image. I also wrote a core-image-custom.bb file that includes these tasks +