mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-17 18:07:05 +00:00
I have no idea if this is the right thing to do, but without the patch I
can't actually buil OE because none of these layers are compatible
with the change in openembedded-core to move to zeus.
Fixes: a5c9709b8d ("layer.conf: Update for zeus series") # openembedded-core
Signed-off-by: Palmer Dabbelt <palmer@dabbelt.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
19 lines
614 B
Plaintext
19 lines
614 B
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have recipes-* directories, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
|
|
${LAYERDIR}/recipes-*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "filesystems-layer"
|
|
BBFILE_PATTERN_filesystems-layer = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_filesystems-layer = "6"
|
|
|
|
# This should only be incremented on significant changes that will
|
|
# cause compatibility issues with other layers
|
|
LAYERVERSION_filesystems-layer = "1"
|
|
|
|
LAYERDEPENDS_filesystems-layer = "core openembedded-layer"
|
|
|
|
LAYERSERIES_COMPAT_filesystems-layer = "thud warrior zeus"
|