[yocto] Adding nativesdk package to toolchain

2014-10-14 Thread Navani Srivastava
Hello, I am trying to add a nativesdk package of a custom recipe to toolchain in Poky-8.0.2. I have added nativesdk-qjson (custom package) to TOOLCHAIN_HOST_TASK variable, but it is throwing following error while generating the toolchain- Collected errors: | * opkg_install_cmd: Cannot install

Re: [yocto] Integration of custom recipe with SDK

2014-10-08 Thread Navani Srivastava
and have faced the same issue in SDK as mentioned in the link. Regards Navani On Fri, Sep 26, 2014 at 8:53 AM, Khem Raj raj.k...@gmail.com wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 9/24/14 5:01 AM, Navani Srivastava wrote: Removing integration of meta-toolchain-qte from my

[yocto] Factors responsible for decision of package deployment path

2014-10-07 Thread Navani Srivastava
Hi, I am unable to understand how toolchain decides libraries and header files deployment into SDK path. Which factors of recipe decides about the path to deploy header file, libraries or binary data into SDK? I am facing a issue. I have a package which is deploying header files and libraries

Re: [yocto] Integration of custom recipe with SDK

2014-09-24 Thread Navani Srivastava
Yes.. i did... On 24 Sep 2014 12:56, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Wednesday 24 September 2014 10:26:41 Navani Srivastava wrote: I corrected FILES_${PN} and added following in my image recipe- QTNAME = qte QT_DIR_NAME = qtopia require recipes-qt/meta/meta

Re: [yocto] Integration of custom recipe with SDK

2014-09-23 Thread Navani Srivastava
rootfs contains qjson libraries but sdk doesn't integrate anything. On Tue, Sep 23, 2014 at 11:24 AM, Khem Raj raj.k...@gmail.com wrote: On Mon, Sep 22, 2014 at 9:26 PM, Navani Srivastava navani.srivast...@gmail.com wrote: Please find the recipe attached herewith for qjson. This recipe

Re: [yocto] Integration of custom recipe with SDK

2014-09-22 Thread Navani Srivastava
22, 2014 at 1:45 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Sunday 21 September 2014 09:26:07 Navani Srivastava wrote: We are not using populatesdk ... we need to generate it through meta-toolchain-qte only so i am trying with the solution provided by randy.. Can I ask why

Re: [yocto] Integration of custom recipe with SDK

2014-09-22 Thread Navani Srivastava
be of a great help!! Regards Navani On Mon, Sep 22, 2014 at 2:21 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Monday 22 September 2014 14:06:26 Navani Srivastava wrote: On Mon, Sep 22, 2014 at 1:45 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Sunday 21 September

Re: [yocto] Integration of custom recipe with SDK

2014-09-22 Thread Navani Srivastava
in attached recipe which is blocking me to integrate qjson in SDK? Navani On Mon, Sep 22, 2014 at 2:48 PM, Navani Srivastava navani.srivast...@gmail.com wrote: I will follow the suggestion given by you and will update the result. However in case if I want to integrate custom recipe with meta

Re: [yocto] Integration of custom recipe with SDK

2014-09-20 Thread Navani Srivastava
We are not using populatesdk ... we need to generate it through meta-toolchain-qte only so i am trying with the solution provided by randy.. Navani On 21 Sep 2014 04:35, Khem Raj raj.k...@gmail.com wrote: On Thu, Sep 18, 2014 at 5:12 AM, Navani Srivastava navani.srivast...@gmail.com wrote

[yocto] Integration of custom recipe with SDK

2014-09-18 Thread Navani Srivastava
Hi, I am using Poky-8.0.2 danny version for development. I want to integrate my custom recipe with sdk generated by meta-toolchain-qte so that I can use header files and libraries generated by my custom recipe for cross compilation. I am not sure of the proper way to do it. Right now generated

Re: [yocto] bitbake -c populate_sdk -v poky-image

2013-08-29 Thread Navani Srivastava
ever faced such kind of issue with populate_sdk before ? On Thu, Aug 29, 2013 at 1:43 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Thursday 29 August 2013 10:11:31 Navani Srivastava wrote: In order to execute bitbake -c populate_sdk poky-image are we supposed to declare

Re: [yocto] bitbake -c populate_sdk -v poky-image

2013-08-28 Thread Navani Srivastava
2013 14:35:40 Navani Srivastava wrote: I think the problem is this: require recipes-core/meta/meta-toolchain.bb Yes, it worked.. Thanks You shouldn't be adding this to an image recipe, and definitely not poky- image.bbclass. then? Is it possible to create .bbappend kind of file

Re: [yocto] bitbake -c populate_sdk -v poky-image

2013-08-28 Thread Navani Srivastava
.. On Wed, Aug 28, 2013 at 8:11 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Wednesday 28 August 2013 13:23:04 Navani Srivastava wrote: Following is my image file to generate rootfs image with SDK having Qt support.. I am able to build SDK successfully but on building any Qt

[yocto] Access ssh repository

2013-08-05 Thread Navani Srivastava
Hi, I am using Poky danny for development.I have a query related to repository fetching. Is it possible to fetch any repository using ssh? As an example, suppose if recipe contains something like- SRC_URI=ssh://__.git When I tried accessing it in the this manner encountered following

Re: [yocto] bitbake -c populate_sdk -v poky-image

2013-07-30 Thread Navani Srivastava
to duplicate toolchain-script.bbclass in my layer? What version of the build system are you using? I am using poky danny (8.0.2) Regards Navani On Tue, Jul 30, 2013 at 1:57 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Tuesday 30 July 2013 00:08:42 Navani Srivastava wrote: I

[yocto] Cleaning dependent package

2013-07-29 Thread Navani Srivastava
Hi, Is it possible to clean any dependent package from some other recipe? As an example- “bitbake core-image-minimal.bb” will build u-boot and linux package as a part of dependent package. Is it possible to clean u-boot and linux by making changes in core-image-minimal.bb recipe? Thanks and

Re: [yocto] bitbake -c populate_sdk -v poky-image

2013-07-29 Thread Navani Srivastava
I have done changes in .bbclass file. Could it be the reason for such behavior? Please find the attached recipe and bbclass. 'm not sure that there is, no. Ok, Thanks.. On Mon, Jul 29, 2013 at 11:34 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Monday 29 July 2013 23:29:25 Navani

[yocto] bitbake -c populate_sdk -v poky-image

2013-07-22 Thread Navani Srivastava
Hi, I want to build meta-toolchain-qte.bb as sdk while running bitbake -c populate_sdk -v core-image-minimal .. Please suggest what changes need to be done to provide this feature? Thanks and Regards Navani Kamal Srivastava ___ yocto mailing list

Re: [yocto] Qt build error for Debug and Release mode

2013-06-19 Thread Navani Srivastava
It Worked :) Thanks On Wed, Jun 19, 2013 at 2:11 AM, Khem Raj raj.k...@gmail.com wrote: On Jun 18, 2013, at 9:15 AM, Navani Srivastava navani.srivast...@gmail.com wrote: Hi, I am using poky-danny (Poky-8.0). I am facing problem in building Qt application. When we are building Qt

[yocto] Qt build error for Debug and Release mode

2013-06-18 Thread Navani Srivastava
Hi, I am using poky-danny (Poky-8.0). I am facing problem in building Qt application. When we are building Qt application with “qmake CONFIG+=debug make” it appends “-g” to build the application in debug mode but when we are building application in release mode by issuing following command

[yocto] Fwd: Qt build error for Debug and Release mode

2013-06-18 Thread Navani Srivastava
Hi, I am using poky-danny (Poky-8.0). I am facing problem in building Qt application. When we are building Qt application with “qmake CONFIG+=debug make” it appends “-g” to build the application in debug mode but when we are building application in release mode by issuing following command

[yocto] Bitbake -c clean core-image-minimal

2013-04-24 Thread Navani Srivastava
Hi, I am using poky-danny for development. I am facing problem at the time of cleaning rootfs image. If I am issuing – “bitbake –c clean core-image-minimal” command , it is not cleaning deploy directory. I can still see images existing in “tmp/deploy/images/”. But the same is working fine for

Re: [yocto] SDK creation

2013-04-03 Thread Navani Srivastava
Thanks for your reply.. It worked.. On Apr 3, 2013 12:58 PM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Friday 15 March 2013 14:12:45 Navani Srivastava wrote: I tried giving PREFERRED_PROVIDER_qt4_embedded ?= 4.8.1 in machine configuration file but it didn't helped.. Any

[yocto] Problem in inserting kernel modules at Start up

2013-03-21 Thread Navani Srivastava
Hi, I am using poky -8.0 (danny) . I wish to insert kernel modules at start up. Before with denzil version I was adding kernel-modules to “IMAGE_INSTALL “ in rootfs image and it used to work like a charm. Now if I am doing the same it is giving me error as mentioned below. “error: Failed

Re: [yocto] SDK creation

2013-03-17 Thread Navani Srivastava
, at 12:06 AM, Navani Srivastava navani.srivast...@gmail.com wrote: Hi, I wish to create SDK with meta-toolchain-qte recipe. As two versions are provided by Poky-8.0. How can I direct compilation of SDK for qt4-embedded_4.8.1.bb ? Right now I am getting following error- ERROR: Multiple

Re: [yocto] SDK creation

2013-03-17 Thread Navani Srivastava
this to your machine.conf PREFERRED_VERSION_qt4-embedded http://qt4-embedded_4.8.1.bb = 4.8.1 Thx, Prana Sent from my iPhone On Mar 15, 2013, at 12:06 AM, Navani Srivastava navani.srivast...@gmail.com wrote: Hi, I wish to create SDK with meta-toolchain-qte recipe. As two versions

[yocto] SDK creation

2013-03-15 Thread Navani Srivastava
Hi, I wish to create SDK with meta-toolchain-qte recipe. As two versions are provided by Poky-8.0. How can I direct compilation of SDK for qt4-embedded_4.8.1.bb ? Right now I am getting following error- ERROR: Multiple .bb files are due to be built which each provide qt4-embedded

Re: [yocto] SDK creation

2013-03-15 Thread Navani Srivastava
Hi, I tried giving PREFERRED_PROVIDER_qt4_embedded ?= 4.8.1 in machine configuration file but it didn't helped.. Any suggestions? On Mar 15, 2013 12:31 PM, Khem Raj raj.k...@gmail.com wrote: On Mar 15, 2013, at 12:06 AM, Navani Srivastava navani.srivast...@gmail.com wrote: Hi, I wish

Re: [yocto] Remove unwanted package from Qt

2013-01-16 Thread Navani Srivastava
I tried the same but again ended up with error. As of now i am removing all unwanted things from rootfs by making changes in image_types.bbclass. I am sure this is not the correct way, any ideas are appreciated.. Thanks Navani On Thu, Dec 27, 2012 at 11:08 PM, Jon Szymaniak

[yocto] Remove unwanted package from Qt

2012-12-25 Thread Navani Srivastava
Hi, I am compiling Qt-4.8.0 with poky-denzil-7.0 for arm1136 architecture. At the time of integrating qt-embedded with rootfs, I am getting qtopia directory in usr/share path of rootfs. I tried removing qtopia directory through qt recipe but ended in compilation error. Please suggest any idea

Re: [yocto] Error while adding a new recipe

2012-07-15 Thread Navani Srivastava
I did the mentioned modification and it worked.. Thanks a lot.. On Thu, Jul 12, 2012 at 7:33 AM, Khem Raj raj.k...@gmail.com wrote: On Thu, Jul 12, 2012 at 1:03 AM, Navani Srivastava navani.srivast...@gmail.com wrote: Sorry, but it didn't worked for me.. .bb file is something like

[yocto] Not able to include dhcp package

2012-07-12 Thread Navani Srivastava
Hi, I am using denzil-7.0 and I am trying to include dhcp package in my rootfs. I appended following option for dhcp (bitbake –e dhcp | grep –e “^PACKAGES=” ) in rootfs .bb file- IMAGE_INSTALL += “dhcp-dbg dhcp-staticdev dhcp-doc dhcp-dev dhcp-server dhcp-server-config dhcp-client

Re: [yocto] Error while adding a new recipe

2012-07-12 Thread Navani Srivastava
.. On Thu, Jul 12, 2012 at 1:08 PM, Khem Raj raj.k...@gmail.com wrote: On Wed, Jul 11, 2012 at 9:03 PM, Navani Srivastava navani.srivast...@gmail.com wrote: Thanks for your reply.. It is a pre-built-binary which I am trying to put in a specific path of rootfs. I didn't get what does it mean

[yocto] Error while adding a new recipe

2012-07-11 Thread Navani Srivastava
Hi, I am working on poky-denzil-1.0 and I have added a recipe to copy pre-built binaries and some documents to specified path of rootfs. I am able to copy documents in rootfs successfully but while copying binaries to rootfs, I am getting following error - NOTE: package colorado-1.0-r0: task

Re: [yocto] Error while adding a new recipe

2012-07-11 Thread Navani Srivastava
Thanks for your reply.. It is a pre-built-binary which I am trying to put in a specific path of rootfs. I didn't get what does it mean by packaging it seperately.. On Wed, Jul 11, 2012 at 8:04 PM, Khem Raj raj.k...@gmail.com wrote: On Wed, Jul 11, 2012 at 5:28 AM, Navani Srivastava

[yocto] 'check_sanity_eventhandler' failed

2012-06-26 Thread Navani Srivastava
Hi, We are using poky-denzil-7.0. I am trying to create SDK by running bitbake -v meta-toolchain-qte . But it is getting failed at the earlier phase throwing an error DEBUG: Fetcher accessed the network with the command git ls-remote git:// git.yoctoproject.org/yocto-firewall-test HEAD DEBUG:

Re: [yocto] Broken SDK

2012-06-05 Thread Navani Srivastava
On Wed, May 30, 2012 at 12:36 AM, Khem Raj raj.k...@gmail.com wrote: On Tue, May 29, 2012 at 2:03 AM, Navani Srivastava navani.srivast...@gmail.com wrote: ln -s /opt/poky/1.0/sysroots/arm-poky-linux-gnueabi/usr/share/qtopia/mkspecs mkspecs | ln: creating symbolic link `mkspecs': File

Re: [yocto] Broken SDK

2012-06-05 Thread Navani Srivastava
successful. Thanks to Yocto community !! On Tue, Jun 5, 2012 at 5:48 PM, Navani Srivastava navani.srivast...@gmail.com wrote: Hi, Thanks for support. I successfully created SDK with this modification. I installed the same SDK and tried compiling Qt application, but got error mentioning Failure

Re: [yocto] Broken SDK

2012-05-29 Thread Navani Srivastava
lianhao...@intel.com wrote: Navani Srivastava wrote on 2012-05-28: Hi, I am working with poky-bernerd-5.0. I have built cross-toolchain for qt with bitbake -v meta-toolchain-qte for arm1136 architecture. I got the tool chain poky-eglibc-i686-arm-toolchain-1.0.tar.bz2 under build/tmp

[yocto] Broken SDK

2012-05-27 Thread Navani Srivastava
Hi, I am working with poky-bernerd-5.0. I have built cross-toolchain for qt with “bitbake –v meta-toolchain-qte” for arm1136 architecture. I got the tool chain “poky-eglibc-i686-arm-toolchain-1.0.tar.bz2” under build/tmp/deploy/sdk/ directory. On untaring this Toolchain I found that cross gcc

[yocto] Unable to Load Kernel Module

2012-04-12 Thread Navani Srivastava
suggest me which changes I need to make in recipes to create this soft link? Thanks and Regards Navani Srivastava ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] Unable to find recipe for glibc-2.11.1

2012-03-26 Thread Navani Srivastava
Hi, I am looking for recipe of glibc-2.11.1 version. I googled for it but no success. Can anyone please suggest me the link from where i can download the same? Thanks and Regards Navani Kamal Srivastava ___ yocto mailing list yocto@yoctoproject.org

[yocto] Problem in Compiling Qt-4.6.3

2012-03-20 Thread Navani Srivastava
Hi, I am facing difficulty in compiling qt4-embedded_4.6.3.bb. I am compiling qt for arm1136 arch. I have changed configuration parameters of qt in qt4.inc as - -opensource -embedded arm -confirm-license -release -shared -xmlpatterns -make libs -nomake docs -nomake demos -nomake tools