yocto-public/6-maintenance/update.md
2015-07-21 14:22:25 +02:00

18 lines
No EOL
251 B
Markdown

# Update Yocto
## Get new fixes
```bash
cd $POKY
git pull origin
```
## Get a new version
```bash
cd $POKY
git fetch origin
VERSION=dizzy
git checkout -b $VERSION origin/$VERSION
```
<warn>You may need to clean some/all targets once updated</warn>