mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-15 15:37:15 +00:00
d32f29c55d
meta-gem5 needs the 5.4 kernel, which is only present in the meta-arm-bsp layer. Add this as a dependency to resolve issues. Signed-off-by: Jon Mason <jon.mason@arm.com>
20 lines
646 B
Plaintext
20 lines
646 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 += "meta-gem5"
|
|
BBFILE_PATTERN_meta-gem5 = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_meta-gem5 = "5"
|
|
|
|
LAYERDEPENDS_meta-gem5 = "core openembedded-layer meta-arm meta-arm-bsp"
|
|
LAYERSERIES_COMPAT_meta-gem5 = "kirkstone"
|
|
|
|
BBFILES_DYNAMIC += " \
|
|
virtualization-layer:${LAYERDIR}/dynamic-layers/meta-virtualization/*/*/*.bbappend \
|
|
"
|
|
|
|
DISTRO_FEATURES_NATIVE:append = " ${@bb.utils.filter('DISTRO_FEATURES', 'xen', d)}"
|