aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamodar Santhapuri <damodar.santhapuri@arm.com>2020-08-27 15:37:24 +0530
committerTushar Khandelwal <tushar.khandelwal@arm.com>2020-09-11 14:38:30 +0100
commitdb27f85f8bda4324d76994698a062bdfd184f9a8 (patch)
tree0fd2ad420d28c75e2ca4ec458fb39ac91cf8e010
parent203c99fe0514a77e3762d9df272ba00a0e26257a (diff)
juno: Introduce juno platformJUNO-2020.08.28
Introduce bblayers to juno. Change-Id: I46cd36662ad36f22d4db91d3360d412e5a6cc8b3 Signed-off-by: Damodar Santhapuri <damodar.santhapuri@arm.com>
-rw-r--r--juno/bblayers.conf36
-rw-r--r--juno/local.conf1
2 files changed, 37 insertions, 0 deletions
diff --git a/juno/bblayers.conf b/juno/bblayers.conf
new file mode 100644
index 0000000..249e4ec
--- /dev/null
+++ b/juno/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/juno/local.conf b/juno/local.conf
new file mode 100644
index 0000000..0e8784b
--- /dev/null
+++ b/juno/local.conf
@@ -0,0 +1 @@
+IMAGE_FEATURES += "debug-tweaks"