blob: 1e6c04c7a4eff99cbf2e4dd54b5f5ed9cdb848db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# We have a conf and classes directory, append to BBPATH
BBPATH .= ":${LAYERDIR}"
# We have a recipes directory, add to BBFILES
# 1) the first directory symlinks necessary files out of the cogent repo
# 2) the 2nd directory is our local glue and appends
BBFILES += " \
${LAYERDIR}/cogent-symlinks/recipes-*/*/*.bb \
${LAYERDIR}/cogent-symlinks/recipes-*/*/*.bbappend \
${LAYERDIR}/recipes-*/*/*.bb \
${LAYERDIR}/recipes-*/*/*.bbappend \
"
BBFILE_COLLECTIONS += "rcar-gen3-cogent"
BBFILE_PATTERN_rcar-gen3-cogent := "^${LAYERDIR}/"
BBFILE_PRIORITY_rcar-gen3-cogent = "7"
LAYERSERIES_COMPAT_rcar-gen3-cogent = "kirkstone langdale"
|