https://github.com/updatehub/updatehub-yocto-project-get-started
https://github.com/updatehub/updatehub-yocto-project-get-started
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/updatehub/updatehub-yocto-project-get-started
- Owner: UpdateHub
- License: mit
- Created: 2020-01-13T16:11:30.000Z (about 6 years ago)
- Default Branch: dunfell
- Last Pushed: 2021-07-07T18:51:08.000Z (over 4 years ago)
- Last Synced: 2025-01-23T13:13:50.540Z (about 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING.MIT
Awesome Lists containing this project
README
# UpdateHub Yocto Project Get Started
To get the platform you need to have `repo` installed and use it as:
Install the `repo` utility:
```shell
$ mkdir ~/bin
$ curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
```
Download the platform source:
``` shell
$ PATH=${PATH}:~/bin
$ mkdir updatehub-get-started
$ cd updatehub-get-started
$ repo init -u https://github.com/UpdateHub/updatehub-yocto-project-get-started.git -b dunfell
$ repo sync
```
At the end of the commands you have every metadata you need to start work with.
Setup the environment:
``` shell
$ source ./setup-environment build
```
Build updatehub-image-base
``` shell
$ bitbake updatehub-image-base
```
## Contributing
UpdateHub is an open source project and we love to receive contributions from our community.
If you would like to contribute, please read our [contributing guide](https://github.com/UpdateHub/updatehub/blob/v1/CONTRIBUTING.md).
## License
UpdateHub Yocto Project Reference Platform is licensed under the MIT License.
See [COPYING.MIT](https://github.com/UpdateHub/updatehub-yocto-project-reference-platform/blob/master/COPYING.MIT) for the full license text.
## Getting in touch
* Reach us on [Gitter](https://gitter.im/UpdateHub/community)
* All source code are in [Github](https://github.com/UpdateHub)
* Email us at [contact@updatehub.io](mailto:contact@updatehub.io)