mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
The layer index module is expected to be used by various parts of the system
in order to access a layerindex-web (such as layers.openembedded.org) and
perform basic processing on the information, such as dependency scanning.
Along with the layerindex implementation are associated tests. The tests
properly honor BB_SKIP_NETTESTS='yes' to prevent test failures.
Tests Implemented:
- Branch, LayerItem, LayerBranch, LayerDependency, Recipe, Machine and
Distro objects
- LayerIndex setup using the layers.openembedded.org restapi
- LayerIndex storing and retrieving from a file
- LayerIndex verify dependency resolution ordering
- LayerIndex setup using simulated cooker data
(Bitbake rev: fd0ee6c10dbb5592731e56f4c592fe687682a3e6)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
285 B
Plaintext
16 lines
285 B
Plaintext
LAYERSERIES_CORENAMES = "sumo"
|
|
|
|
# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
|
|
# changes incompatibly
|
|
LCONF_VERSION = "7"
|
|
|
|
BBPATH = "${TOPDIR}"
|
|
BBFILES ?= ""
|
|
|
|
BBLAYERS ?= " \
|
|
${TOPDIR}/layer1 \
|
|
${TOPDIR}/layer2 \
|
|
${TOPDIR}/layer3 \
|
|
${TOPDIR}/layer4 \
|
|
"
|