summaryrefslogtreecommitdiff
path: root/bblayers.conf
diff options
context:
space:
mode:
Diffstat (limited to 'bblayers.conf')
-rw-r--r--bblayers.conf34
1 files changed, 34 insertions, 0 deletions
diff --git a/bblayers.conf b/bblayers.conf
new file mode 100644
index 0000000..b00f8fc
--- /dev/null
+++ b/bblayers.conf
@@ -0,0 +1,34 @@
+# 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
+BSPLAYERS ?= " \
+"
+
+# Add your overlay location to EXTRALAYERS
+# Make sure to have a conf/layers.conf in there
+EXTRALAYERS ?= " \
+ ${OEROOT}/layers/meta-linaro/meta-linaro-toolchain \
+"
+
+BBLAYERS = " \
+ ${OEROOT}/layers/meta-corstone700 \
+ ${OEROOT}/layers/meta-iota \
+ ${BASELAYERS} \
+ ${BSPLAYERS} \
+ ${EXTRALAYERS} \
+ ${OEROOT}/layers/openembedded-core/meta \
+"