Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/balena-os/balena-compulab-imx9
Device integration repository for Compulab iMX9
https://github.com/balena-os/balena-compulab-imx9
Last synced: about 1 month ago
JSON representation
Device integration repository for Compulab iMX9
- Host: GitHub
- URL: https://github.com/balena-os/balena-compulab-imx9
- Owner: balena-os
- License: apache-2.0
- Created: 2023-10-17T14:50:46.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-22T06:50:37.000Z (8 months ago)
- Last Synced: 2024-04-22T07:58:05.049Z (8 months ago)
- Language: BitBake
- Size: 143 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# balena-compulab-imx9 repository
## Clone/Initialize the repository
There are two ways of initializing this repository:
* Clone this repository with "git clone --recursive".or
* Run "git clone" and then "git submodule update --init --recursive". This will
bring in all the needed dependencies.## Build information
### Build flags
* Consult layers/meta-balena/README.md for info on various build flags (setting
up serial console support for example) and build prerequisites. Build flags can
be set by using the build script (barys) or by manually modifying `local.conf`.See below for using the build script.
### Build this repository
* Run the build script:
`./balena-yocto-scripts/build/barys`* You can also run barys with the -h switch to inspect the available options
### Custom build using this repository
* Run the build script in dry run mode to setup an empty `build` directory
`./balena-yocto-scripts/build/barys --remove-build --dry-run`* Edit the `local.conf` in the `build/conf` directory
* Prepare build's shell environment
`source layers/poky/oe-init-build-env`* Run bitbake (see message outputted when you sourced above for examples)
## Contributing
### Issues
For issues we use an aggregated github repository available [here](https://github.com/balena-os/balena-os/issues). When you create issue make sure you select the right labels.
### Pull requests
To contribute send github pull requests targeting this repository.
Please refer to: [Yocto Contribution Guidelines](https://wiki.yoctoproject.org/wiki/Contribution_Guidelines#General_Information) and try to use the commit log format as stated there. Example:
```
: Short descriptionI'm going to explain here what my commit does in a way that history
would be useful.Changelog-entry: User facing description of the issue
Signed-off-by: Joe Developer
```The header of each commit must not exceed 72 characters in length and must be in 1 line only.
The header and the subject of each commit must be separated by an empty line.
The subject of each commit must not exceed 72 characters per line and can be wrapped to several lines.
The subject and the footer of each commit must be separated by an empty line.
Every pull request must contain at least one commit annotated with the `Changelog-entry` footer. The messages contained in these footers will be used to automatically fill the changelog on every new version.
Also, every update to `meta-balena` should be separated into its own commit, if the body of that commit contains the following line `Updated meta-balena from X to Y` the generated changelog will include a button to show all the updates in `meta-balena` from the version after `X` to `Y`.
An example of a valid commit updating `meta-balena` is:
```
layers/meta-balena: Update to v2.29.0Update meta-balena from 2.28.0 to 2.29.0
Changelog-entry: Update the meta-balena submodule from v2.28.0 to v2.29.0
```Make sure you mention the issue addressed by a PR. See:
* https://help.github.com/articles/autolinked-references-and-urls/#issues-and-pull-requests
* https://help.github.com/articles/closing-issues-via-commit-messages/#closing-an-issue-in-a-different-repository