yocto-public/4-workflow/addpkg.md

16 lines
271 B
Markdown
Raw Permalink Normal View History

2015-07-21 12:22:25 +00:00
# Adding packages/recipes to image
## Quick and Dirty
Add to your `local.conf`:
```sh
IMAGE_INSTALL_append += " package"
```
## Associated to an image, machine or distro
In the image, machine or distro configuration file:
```sh
IMAGE_INSTALL_append += " package"
```