aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Dellien <anders.dellien@arm.com>2020-07-28 13:47:59 +0100
committerTushar Khandelwal <tushar.khandelwal@arm.com>2020-08-06 15:27:53 +0100
commit89a2c4c9cbf434fa8ba7833bdf20e684144d6eb2 (patch)
treeb0f3f89cb4e9b0b032d5d3fe4a0674269e0a4c34
parent280b7479d4686c197a68e8b10d779ff74176574f (diff)
fvp-base: Introduce fvp-baseBASEFVP-2020.08.06
Introduce the fvp-base bblayers. Change-Id: Icdc860e78c8a4a9db519b0bca22835aaf40ef04c Signed-off-by: Anders Dellien <anders.dellien@arm.com>
-rw-r--r--fvp-base/bblayers.conf36
-rw-r--r--fvp-base/local.conf1
2 files changed, 37 insertions, 0 deletions
diff --git a/fvp-base/bblayers.conf b/fvp-base/bblayers.conf
new file mode 100644
index 0000000..249e4ec
--- /dev/null
+++ b/fvp-base/bblayers.conf
@@ -0,0 +1,36 @@
+# 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-yocto/meta-poky \
+ ${OEROOT}/layers/meta-openembedded/meta-python \
+ ${OEROOT}/layers/meta-openembedded/meta-oe \
+ ${OEROOT}/layers/meta-arm/meta-arm \
+ ${OEROOT}/layers/meta-kernel \
+"
+
+# These layers hold machine specific content, aka Board Support Packages
+
+BSPLAYERS ?= " \
+ ${OEROOT}/layers/meta-arm/meta-arm-bsp \
+"
+
+# Add your overlay location to EXTRALAYERS
+# Make sure to have a conf/layers.conf in there
+EXTRALAYERS ?= " \
+ ${OEROOT}/layers/meta-arm/meta-arm-toolchain \
+"
+
+BBLAYERS = " \
+ ${BASELAYERS} \
+ ${BSPLAYERS} \
+ ${EXTRALAYERS} \
+ ${OEROOT}/layers/openembedded-core/meta \
+"
diff --git a/fvp-base/local.conf b/fvp-base/local.conf
new file mode 100644
index 0000000..0e8784b
--- /dev/null
+++ b/fvp-base/local.conf
@@ -0,0 +1 @@
+IMAGE_FEATURES += "debug-tweaks"