From 9e680af17e23f9fc50ffc508e68f3a4f06470c18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20K=C3=A4llberg?= Date: Sat, 21 Jun 2025 08:22:14 +0200 Subject: [PATCH] Created meta-zepto layer for kirkstone branch This layer's sole purpose is simple! It sets one variable, BBLAYERS_LAYERINDEX_URL, and is sets it to "https://layers.chxc.se/layerindex/", i.e. BBLAYERS_LAYERINDEX_URL = "https://layers.chxc.se/layerindex/" And it does that in order to make use of the Zepto layerindex. --- conf/layer.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 conf/layer.conf diff --git a/conf/layer.conf b/conf/layer.conf new file mode 100644 index 0000000..35c02c5 --- /dev/null +++ b/conf/layer.conf @@ -0,0 +1,17 @@ +# We have a conf and classes directory, add to BBPATH +BBPATH := "${BBPATH}:${LAYERDIR}" + +# We have a packages directory, add to BBFILES +BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \ + ${LAYERDIR}/recipes-*/*/*.bbappend" + +BBFILE_COLLECTIONS += "zepto" +BBFILE_PATTERN_zepto := "^${LAYERDIR}/" +BBFILE_PRIORITY_zepto := "5" + +LAYERVERSION_zepto = "1" +LAYERDEPENDS_zepto = "core" + +LAYERSERIES_COMPAT_zepto = "kirkstone langdale mickledore nanbield" + +BBLAYERS_LAYERINDEX_URL = "https://layers.chxc.se/layerindex/"