Trucrux Inc

Adding Packages in Yocto

Path for local.conf

cd build_xwayland/conf/local.conf

local.conf is used for adding extra image features, packages, etc.

For example to add Qt creater and eclipse debug support to image,

Append the local.conf for adding eclipse debug feature in image as below

EXTRA_IMAGE_FEATURES = " \
eclipse-debug \
ssh-server-openssh \
"

Append the local.conf file for adding Qt creator feature in image as below

EXTRA_IMAGE_FEATURES = " \
qtcreator-debug \
ssh-server-openssh \
"