mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-01-12 01:20:20 +00:00
Build is failing for ti-rtos-firmware when ARAGO_BRAND = "mainline" with below error: "ERROR: ti-rtos-firmware-08.00.00.32-r0.0 do_fetch: Fetcher failure: Unable to find file file://0001-Revert-soc-am64x-Makefile-Move-the- SPL-Load-address-.patch;patchdir=../imggen anywhere." This is because the mentioned patch is not present in the current path. Fix this by updating the path to include ti-sci-fw Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Signed-off-by: Yogesh Siraswar <yogeshs@ti.com>
36 lines
799 B
Plaintext
36 lines
799 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"
|
|
BBFILE_PATTERN_meta-ti := "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_meta-ti = "6"
|
|
|
|
LAYERSERIES_COMPAT_meta-ti = "dunfell"
|
|
|
|
LICENSE_PATH += "${LAYERDIR}/licenses"
|
|
|
|
LAYERDEPENDS_meta-ti = " \
|
|
core \
|
|
meta-arm \
|
|
"
|
|
|
|
SIGGEN_EXCLUDERECIPES_ABISAFE += " \
|
|
ti-sgx-ddk-km \
|
|
ti-sgx-ddk-um \
|
|
cmem-mod \
|
|
hplib-mod \
|
|
gdbserverproxy-module-drv \
|
|
debugss-module-drv \
|
|
uio-module-drv \
|
|
mpm-transport \
|
|
cppi-lld \
|
|
qmss-lld \
|
|
multiprocmgr \
|
|
"
|
|
|
|
HOSTTOOLS_NONFATAL += "truncate xxd comm"
|