- Also allow CONFIGFILE to have a ".mcf" extension.
- Rename "webos_layers" to "Layers", but continue to recognize old name.
- Recognize an optional BblayersConfExtraLines variable in CONFIGFILE
that contains a list of strings to be appended as separate lines to the generated
conf/bblayers.conf .
- The absolute value of "priority" determines of order of layer updates.
This allows bitbake to be in a subdirectory of openembedded-core so
that the oe-init-build-env script in "morty" can be used.
- Fix error message to mention conf/layer.conf instead of incorrect local.conf .
- Rename "submission" item to "fetch".
- This is CONFIGFILE version 2 (FileFormatVersion = 2)
- Requires Python 3.5 => major version bump.
check-version.py polls the official rosdistro file and compares the
version numbers in the meta layer with the official versions.
Usage:
List all versions: ./check-versions.py list (--details)
List all versions that don't match: ./check-versions.py mismatch
(--details)
Update recipe to dist version: ./check-versions.py update <package>
(--downgrade)
Update all recipes to dist version: ./check-versions.py update-all
(--downgrade)
The check-patch-files script checks that all patch files in the
given directory are annotated with an 'Upstream-Status', and
that all patch files are at least noted in their top-level
directory (so we can assume they are used).
In case a violation is detected, it returns a non-zero exit code,
so that a travis-ci reports a violation as build failure.
The bitbake call before each build of a recipe was not required.
Commented out the fresh build, as it currently does not show more
problems than simply building in a shared environment.
Avoiding a fresh environment for each build decreases the runtime
of the test dramatically.
In the previous commit, I accidently also edited another line than intended and
missed to see the accident before committing.
This commit reverts that accident.
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>