mirror of
git://git.yoctoproject.org/poky
synced 2026-04-02 02:49:11 +00:00
"poky" is the reference distribution for the Yocto Project. This renames the layer within the meta-yocto repository to meta-poky, better matching what that layer contains. A layer.conf file is left behind as this is the only way which allows existing builds to migrate safely to the new name. It will be removed at some future point. This change requires the corresponding OE-Core change to handle the migration and the changes to the infrastructure to support this. (From meta-yocto rev: d0c88df2e14672fca4ebbde93c5efbcd0e4fa9b6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 lines
633 B
Plaintext
13 lines
633 B
Plaintext
# Provide some extensions to sanity.bbclass to handle poky-specific conf file upgrades
|
|
|
|
python poky_update_bblayersconf() {
|
|
current_version = int(d.getVar('POKY_BBLAYERS_CONF_VERSION', True) or -1)
|
|
latest_version = int(d.getVar('REQUIRED_POKY_BBLAYERS_CONF_VERSION', True) or -1)
|
|
|
|
# No version transitions here yet
|
|
raise NotImplementedError("You need to update bblayers.conf manually for this version transision")
|
|
}
|
|
|
|
# Prepend to ensure our function runs before the OE-Core one
|
|
BBLAYERS_CONF_UPDATE_FUNCS =+ "conf/bblayers.conf:POKY_BBLAYERS_CONF_VERSION:REQUIRED_POKY_BBLAYERS_CONF_VERSION:poky_update_bblayersconf"
|