16 lines
271 B
Markdown
16 lines
271 B
Markdown
![]() |
# 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"
|
||
|
```
|