mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
There are some unobvious issues with adding PVR support to Mesa via a bbappend: 1. We need to mark mesa package as machine-specific, due to differences in builds between SGX, Rogue and software-rendering 2. We also need to then mark mesa package as providing safe ABIs (EGL/GLES/GBM) in order for all generic dependent packages to not be treated as machine-specific, allowing their re-use across different machines of the same architecture But doing the above alters the upstream mesa package and changes its signatures even when not building for TI platforms, which is a Yocto Project compliance violation. In order to resolve this issue, convert Mesa bbappend, that adds PVR support, into its own standalone alternative provider, called mesa-pvr and allow selecting it with PREFERRED_PROVIDER settings. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
26 lines
638 B
Plaintext
26 lines
638 B
Plaintext
# We have a conf and classes directory, append to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
METATIBASE := '${@os.path.normpath("${LAYERDIR}/")}'
|
|
|
|
# We have a recipes directory, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "meta-ti-bsp"
|
|
BBFILE_PATTERN_meta-ti-bsp := "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_meta-ti-bsp = "6"
|
|
|
|
LAYERSERIES_COMPAT_meta-ti-bsp = "kirkstone langdale mickledore"
|
|
|
|
LICENSE_PATH += "${LAYERDIR}/licenses"
|
|
|
|
LAYERDEPENDS_meta-ti-bsp = " \
|
|
core \
|
|
meta-arm \
|
|
"
|
|
|
|
SIGGEN_EXCLUDERECIPES_ABISAFE += " \
|
|
mesa-pvr \
|
|
"
|
|
|
|
HOSTTOOLS_NONFATAL += "truncate xxd comm"
|