Customize the root file system

Add packages to your target image

If you want to add a package to your image, for example strace, add the following to your project’s conf/local.conf file:

IMAGE_INSTALL_append = " strace"

Note Include the space before the word strace.

Add features to your target image

The Yocto project uses features to define a set of customizations to apply to target images, such as the addition of a related set of packages. Apart from the standard Yocto features, the DEY images introduce some new features that allow for a certain degree of customization ease. Use the following syntax to add features to your conf/local.conf project configuration file:

EXTRA_IMAGE_FEATURES = "<feat-name> <feat2-name>"

Most of the features are automatically selected based on the selected machine. For example, a machine that supports ALSA will include the dey-audio feature automatically.

New DEY features:

Advanced customization

When you need to further customize Digi Embedded Yocto for your specific needs, the suggested way is to create a new layer. For example, you could create a custom layer called meta-custom. Your meta-custom layer can: