How many memory needs to building webkit-gtk in yocto?

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

How many memory needs to building webkit-gtk in yocto?

跳至解决方案
1,521 次查看
zhiyancao
Contributor II

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.

标签 (1)
0 项奖励
1 解答
1,002 次查看
LeonardoSandova
Specialist I

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

在原帖中查看解决方案

0 项奖励
2 回复数
1,003 次查看
LeonardoSandova
Specialist I

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

0 项奖励
1,002 次查看
zhiyancao
Contributor II

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)

0 项奖励