In fsl-image-gui.bb, has WEB = "web-webkit", Is it build into the target image?
I add it to IMAGE_INSTALL, when ld, it exhaust memory.
Solved! Go to Solution.
One way to know if a package belongs to an image is generating its dependencies with
$ bitbake -g fsl-image-gui
then filtering (greping)
$ cat pn-depends.dot | grep web
"qt4-x11-free" -> "libqtwebkit4" [style=dashed]
"qt4-x11-free" -> "libqtwebkit4-dev" [style=dashed]
"qt4-x11-free" -> "libqtwebkit4-dbg" [style=dashed]
The first column are the packages included. So the answer is no, that image does not have webkit.
In the other hand, Are you using a virtual machine to build yocto? Make sure you have enough RAM and HD when building Yocto stuff :smileyhappy:
Leo
One way to know if a package belongs to an image is generating its dependencies with
$ bitbake -g fsl-image-gui
then filtering (greping)
$ cat pn-depends.dot | grep web
"qt4-x11-free" -> "libqtwebkit4" [style=dashed]
"qt4-x11-free" -> "libqtwebkit4-dev" [style=dashed]
"qt4-x11-free" -> "libqtwebkit4-dbg" [style=dashed]
The first column are the packages included. So the answer is no, that image does not have webkit.
In the other hand, Are you using a virtual machine to build yocto? Make sure you have enough RAM and HD when building Yocto stuff :smileyhappy:
Leo
I has another question? build and install is different.
I check pn-depends.dot, it has eglibc-locale, but in the final image ext3, eglibc-locale content is not, the same problem to eglibc-utils;
how to package them to final image.
I try add it to IMGAE_INSTALL
but:
Error: eglibc-locale not found in the base feeds (hc1000 armv7a-vfp-neon armv7a-vfp armv7a armv6-vfp armv6 armv5e-vfp armv5e armv5-vfp armv5 armv4 arm noarch any all)