aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdellatif El Khlifi <abdellatif.elkhlifi@arm.com>2020-10-16 18:08:38 +0100
committerRui Miguel Silva <rui.silva@arm.com>2020-11-24 13:10:42 +0000
commit38ea9ffa17b6ef9685d329892c471f6432945db2 (patch)
tree502f5844e54b976847853708513d180c5668d76b
parent35067ff9150827b147c98fd85c9df2084de47cf0 (diff)
corstone500: adding bblayers.confCORSTONE-700-2020.12.10CORSTONE-500-2020.11.27
This commit provides the Corstone-500 bblayers.conf Change-Id: I737e5f496d6c500c5392ac643abebf16f9c09b3d Signed-off-by: Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
-rw-r--r--corstone500/bblayers.conf38
1 files changed, 38 insertions, 0 deletions
diff --git a/corstone500/bblayers.conf b/corstone500/bblayers.conf
new file mode 100644
index 0000000..0e44e0a
--- /dev/null
+++ b/corstone500/bblayers.conf
@@ -0,0 +1,38 @@
+# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
+# changes incompatibly
+LCONF_VERSION = "7"
+OEROOT := "${@os.path.abspath(os.path.dirname(d.getVar('FILE', True)))}/../.."
+
+BBPATH = "${TOPDIR}"
+
+BBFILES = ""
+
+# These layers hold recipe metadata not found in OE-core, but lack any machine or distro content
+BASELAYERS ?= " \
+ ${OEROOT}/layers/meta-openembedded/meta-filesystems \
+ ${OEROOT}/layers/meta-openembedded/meta-oe \
+ ${OEROOT}/layers/meta-yocto/meta-poky \
+"
+
+# These layers hold machine specific content, aka Board Support Packages
+# If one want to build for corstone700 platform swap line below with the
+# one with meta-designstart:
+
+BSPLAYERS ?= " \
+ ${OEROOT}/layers/meta-arm/meta-arm \
+ ${OEROOT}/layers/meta-arm/meta-arm-bsp \
+ ${OEROOT}/layers/meta-kernel \
+ ${OEROOT}/layers/meta-arm-image \
+ ${OEROOT}/layers/meta-arm/meta-arm-toolchain \
+"
+
+EXTRALAYERS ?= " \
+ ${OEROOT}/layers/meta-openembedded/meta-python \
+"
+
+BBLAYERS = " \
+ ${BASELAYERS} \
+ ${BSPLAYERS} \
+ ${EXTRALAYERS} \
+ ${OEROOT}/layers/openembedded-core/meta \
+"