Table of Contents

CI

Problems to solve:

layers revision

Change version of meta layers

single recipe revision

Change fixed SRCREV and SRCBRANCH in recipes ? quite problematic. For example recipe name is my_app.bb:

Already solved in Yocto!

Yocto contains special latest distro poky-bleeding.conf where config file poky-floating-revisions.inc is used:

poky-floating-revisions.inc
SRCREV_pn-oh-puzzles ?= "${AUTOREV}"
SRCREV_pn-libowl ?= "${AUTOREV}"
SRCREV_pn-matchbox-applet-light ?= "${AUTOREV}"

In latest Yocto it looks like:

poky-floating-revisions.inc
#
# Set recipe versions to auto-rev for cutting edge testing
#
 
INHERIT += "poky-bleeding"
 
POKY_AUTOREV_RECIPES = "\
    libmatchbox \
    opkg-utils \
    matchbox-config-gtk \
    matchbox-desktop \
    matchbox-keyboard \
    matchbox-panel-2 \
    matchbox-terminal \
    matchbox-theme-sato \
    matchbox-wm \
    pseudo \
    puzzles \
    sato-icon-theme \
    sato-screenshot \
    settings-daemon \
"