yocto-public/7-maintenance/update.md

18 lines
251 B
Markdown
Raw Permalink Normal View History

2015-07-21 12:22:25 +00:00
# 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>