Rename meta-resin to meta-balena in repository
Changelog-entry: Rename meta-resin to meta-balena in repository Signed-off-by: Florin Sarbu <florin@balena.io>
This commit is contained in:
parent
2301a06a1c
commit
a6654dc76d
269 changed files with 22 additions and 22 deletions
6
.gitmodules
vendored
6
.gitmodules
vendored
|
@ -7,9 +7,9 @@
|
|||
[submodule "layers/meta-openembedded"]
|
||||
path = layers/meta-openembedded
|
||||
url = https://github.com/openembedded/meta-openembedded
|
||||
[submodule "layers/meta-resin"]
|
||||
path = layers/meta-resin
|
||||
url = https://github.com/resin-os/meta-resin
|
||||
[submodule "layers/meta-balena"]
|
||||
path = layers/meta-balena
|
||||
url = https://github.com/balena-os/meta-balena.git
|
||||
[submodule "layers/meta-sunxi"]
|
||||
path = layers/meta-sunxi
|
||||
url = https://github.com/linux-sunxi/meta-sunxi.git
|
||||
|
|
22
README.md
22
README.md
|
@ -1,6 +1,6 @@
|
|||
# resin-allwinner repository
|
||||
# balena-allwinner repository
|
||||
|
||||
This repo builds support for resinOS on the Allwinner SoCs.
|
||||
This repo builds support for balenaOS on the Allwinner SoCs.
|
||||
|
||||
Currently Supported SoC versions:
|
||||
* H3
|
||||
|
@ -31,7 +31,7 @@ bring in all the needed dependencies.
|
|||
|
||||
### Build flags
|
||||
|
||||
* Consult layers/meta-resin/README.md for info on various build flags (setting
|
||||
* 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`.
|
||||
|
||||
|
@ -40,14 +40,14 @@ See below for using the build script.
|
|||
### Build this repository
|
||||
|
||||
* Run the build script:
|
||||
`./resin-yocto-scripts/build/barys`
|
||||
`./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
|
||||
`./resin-yocto-scripts/build/barys --remove-build --dry-run`
|
||||
`./balena-yocto-scripts/build/barys --remove-build --dry-run`
|
||||
|
||||
* Edit the `local.conf` in the `build/conf` directory
|
||||
|
||||
|
@ -60,7 +60,7 @@ See below for using the build script.
|
|||
|
||||
### Issues
|
||||
|
||||
For issues we use an aggregated github repository available [here](https://github.com/resin-os/resinos/issues). When you create issue make sure you select the right labels.
|
||||
For issues we use an aggregated github repository available [here](https://github.com/balena-os/balenaos/issues). When you create issue make sure you select the right labels.
|
||||
|
||||
### Pull requests
|
||||
|
||||
|
@ -87,16 +87,16 @@ 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-resin` should be separated into its own commit, if the body of that commit contains the following line `Updated meta-resin from X to Y` the generated changelog will include a button to show all the updates in `meta-resin` from the version after `X` to `Y`.
|
||||
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-resin` is:
|
||||
An example of a valid commit updating `meta-balena` is:
|
||||
|
||||
```
|
||||
layers/meta-resin: Update to v2.24.0
|
||||
layers/meta-balena: Update to v2.24.0
|
||||
|
||||
Update meta-resin from 2.19.0 to 2.24.0
|
||||
Update meta-balena from 2.19.0 to 2.24.0
|
||||
|
||||
Changelog-entry: Update the meta-resin submodule from v2.19.0 to v2.24.0
|
||||
Changelog-entry: Update the meta-balena submodule from v2.19.0 to v2.24.0
|
||||
```
|
||||
|
||||
Make sure you mention the issue addressed by a PR. See:
|
||||
|
|
1
layers/meta-balena
Submodule
1
layers/meta-balena
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit b51e1353c4fb50bc48b22106ddeb31a20d8ad064
|
|
@ -3,10 +3,10 @@ BBPATH .= ":${LAYERDIR}"
|
|||
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
|
||||
${LAYERDIR}/recipes-*/*/*.bbappend"
|
||||
|
||||
BBFILE_COLLECTIONS += "resin-allwinner"
|
||||
BBFILE_PATTERN_resin-allwinner := "^${LAYERDIR}/"
|
||||
BBFILE_PRIORITY_resin-allwinner = "1337"
|
||||
BBFILE_COLLECTIONS += "balena-allwinner"
|
||||
BBFILE_PATTERN_balena-allwinner := "^${LAYERDIR}/"
|
||||
BBFILE_PRIORITY_balena-allwinner = "1337"
|
||||
|
||||
LAYERSERIES_COMPAT_resin-allwinner = "sumo"
|
||||
LAYERSERIES_COMPAT_balena-allwinner = "sumo"
|
||||
|
||||
PREFERRED_VERSION_linux-mainline_nanopi-neo-air = "4.16.13"
|
|
@ -13,8 +13,8 @@ BBLAYERS ?= " \
|
|||
${TOPDIR}/../layers/meta-openembedded/meta-networking \
|
||||
${TOPDIR}/../layers/meta-openembedded/meta-python \
|
||||
${TOPDIR}/../layers/meta-sunxi \
|
||||
${TOPDIR}/../layers/meta-resin/meta-resin-common \
|
||||
${TOPDIR}/../layers/meta-resin/meta-resin-sumo \
|
||||
${TOPDIR}/../layers/meta-resin-allwinner \
|
||||
${TOPDIR}/../layers/meta-balena/meta-resin-common \
|
||||
${TOPDIR}/../layers/meta-balena/meta-resin-sumo \
|
||||
${TOPDIR}/../layers/meta-balena-allwinner \
|
||||
${TOPDIR}/../layers/meta-rust \
|
||||
"
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue