summaryrefslogtreecommitdiff
path: root/buildconf/bblayers.conf
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2023-01-13 13:10:09 +0100
committerMax Krummenacher <max.krummenacher@toradex.com>2023-03-03 11:13:24 +0100
commit4615a14d41f9f9c1069e313b4c91234505edee16 (patch)
tree1f474cd2ec8dd691862dfdcf5986631bfae25859 /buildconf/bblayers.conf
parent40d0e1c80b7ce34bd88af0eec08c7c398d8229fc (diff)
buildconf: prepare for verdin am62 addition
bblayers.conf: Split the NXP specific layers into a variable and add the layers used to build for TI SoCs into its own variable. Note the the layers required to build for TI SoCs are not yet added to the list of active layers. local.conf: Rework the setting of DISTRO, so that the downstream distro is only applied for NXP i.MX8 based SoC. Related-to: ELB-4978 Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> (cherry picked from commit b72f11c9adf0b35e4016e7b9e58fc8c86d37f0e8)
Diffstat (limited to 'buildconf/bblayers.conf')
-rw-r--r--buildconf/bblayers.conf14
1 files changed, 13 insertions, 1 deletions
diff --git a/buildconf/bblayers.conf b/buildconf/bblayers.conf
index f04f5ff..f64cbcc 100644
--- a/buildconf/bblayers.conf
+++ b/buildconf/bblayers.conf
@@ -5,10 +5,22 @@ LCONF_VERSION = "7"
BBPATH = "${TOPDIR}"
BBFILES ?= ""
-BBLAYERS ?= " \
+BBLAYERS_NXP ?= " \
${TOPDIR}/../layers/meta-toradex-nxp \
${TOPDIR}/../layers/meta-freescale \
${TOPDIR}/../layers/meta-freescale-3rdparty \
+"
+
+BBLAYERS_TI ?= " \
+ ${TOPDIR}/../layers/meta-toradex-ti \
+ ${TOPDIR}/../layers/meta-arm/meta-arm-toolchain \
+ ${TOPDIR}/../layers/meta-arm/meta-arm \
+ ${TOPDIR}/../layers/meta-ti/meta-ti-bsp \
+ ${TOPDIR}/../layers/meta-ti/meta-ti-extras \
+"
+
+BBLAYERS ?= " \
+ ${BBLAYERS_NXP} \
\
${TOPDIR}/../layers/meta-toradex-bsp-common \
\