All of lore.kernel.org
 help / color / mirror / Atom feed
* Package name in .bb file
@ 2011-12-14  8:32 Navani Kamal Srivastava
  2011-12-14 21:36 ` Khem Raj
  0 siblings, 1 reply; 2+ messages in thread
From: Navani Kamal Srivastava @ 2011-12-14  8:32 UTC (permalink / raw)
  To: yocto

[-- Attachment #1: Type: text/plain, Size: 1323 bytes --]

Hello,


1-     I wish to know how we are supposed to include package name in rootfs *.bb file?

Like if I have to include Qt-4.6.3 , which parameter from qt4-embedded_4.6.3.bb file I need to give in rootfs poky-image.bb file? I tried giving-

IMAGE_INSTALL += "qt4 busybox tcp-wrappers iproute2 canutils alsa-utils alsa-lib directfb hwapps tslib-conf tslib-tests tslib-calibrate"

But got error Unable to find qt4 package..


2-     I need to get libstdc++.so.6 library in rootfs. Which package I am supposed to install to get the same?

Thanks & Regards,
Navani Kamal Srivastava


Larsen & Toubro Limited

www.larsentoubro.com<http://www.larsentoubro.com/>

This mail is classified as: ( ) L&T Proprietary ( ) L&T Confidential (X) L&T Internal Use ( ) L&T General Business
This email may contain confidential or privileged information for the intended recipient(s). If you are not the intended recipient, please do not use or disseminate the information, notify the sender and delete it from your system.




Larsen & Toubro Limited

www.larsentoubro.com

This Email may contain confidential or privileged information for the intended recipient (s) If you are not the intended recipient, please do not use or disseminate the information, notify the sender and delete it from your system.

[-- Attachment #2: Type: text/html, Size: 4829 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Package name in .bb file
  2011-12-14  8:32 Package name in .bb file Navani Kamal Srivastava
@ 2011-12-14 21:36 ` Khem Raj
  0 siblings, 0 replies; 2+ messages in thread
From: Khem Raj @ 2011-12-14 21:36 UTC (permalink / raw)
  To: Navani Kamal Srivastava; +Cc: yocto

On Wed, Dec 14, 2011 at 12:32 AM, Navani Kamal Srivastava
<NAVANI.Srivastava@lnties.com> wrote:
> Hello,
>
>
>
> 1-     I wish to know how we are supposed to include package name in rootfs
> *.bb file?
>
>
>
> Like if I have to include Qt-4.6.3 , which parameter from
> qt4-embedded_4.6.3.bb file I need to give in rootfs poky-image.bb file? I
> tried giving-
>
>
>
> IMAGE_INSTALL += "qt4 busybox tcp-wrappers iproute2 canutils alsa-utils
> alsa-lib directfb hwapps tslib-conf tslib-tests tslib-calibrate"
>
>
>
> But got error Unable to find qt4 package..
>

recipe names may not be the output package names in lot of cases. So
you have to look at PACKAGES that come out of the .bb ( recipe)
and add those to IMAGE_INSTALL

if you do bitbake -e <recipe> | grep -e "^PACKAGES="

should list the packages the given recipe will generate. In your case try

bitbake -e qt4-embedded | grep -e "^PACKAGES="
>
>
> 2-     I need to get libstdc++.so.6 library in rootfs. Which package I am
> supposed to install to get the same?
>

it should be in libstdc++6 package which is generated by building
gcc-runtime_4.6.bb
so now you see the difference between package and recipe names


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-12-14 21:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-14  8:32 Package name in .bb file Navani Kamal Srivastava
2011-12-14 21:36 ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.