How to get a list of all available goals in Yocto?

I am trying to configure a custom Yocto build for an embedded system.

I need to add packages for both target fs and toolchain.

I'm currently only trying to add packages that already have a recipe.

For example, by adding IMAGE_INSTALL += " boost-dev"and TOOLCHAIN_TARGET_TASK += "boost-dev", I can add boost for both targets and the tool chain.

What i want to do

The roots created by Yocto are very complete and have many libraries, but the tool chain has only the most basic ones.

I want to add the missing libraries to the tool chain.

Question:

How to find the names of available libraries?

Like boost-dev, I searched a lot to find out by adding a name boost-devto TOOLCHAIN_TARGET_TASK. I can get what I want.

, OpenGL OpenCL, , /meta-fsl-arm/recipes-graphics/imx-gpu-viv , , TOOLCHAIN_TARGET_TASK?

+4
1

googling , Bitbake, .

bitbake -g <packagename> -u depexp, , , Yocto.

, devil devil-dev, TOOLCHAIN_TARGET_TASK += "devil-dev" meta-toolchain%.bbappend devil .

, , , , , .

, , , , , .bb .inc .

, , PACKAGES, , - . TOOLCHAIN_TARGET_TASK.

+1

Source: https://habr.com/ru/post/1618315/


All Articles