From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 6625544440715935744 X-Received: by 2002:a17:906:78c5:: with SMTP id r5-v6mr252101ejn.16.1542629776472; Mon, 19 Nov 2018 04:16:16 -0800 (PST) X-BeenThere: isar-users@googlegroups.com Received: by 2002:a17:906:1903:: with SMTP id a3-v6ls264280eje.3.gmail; Mon, 19 Nov 2018 04:16:16 -0800 (PST) X-Google-Smtp-Source: AFSGD/VACmkH8jUNYAEhDXh7uvg3DGAfqtZFzgueRri+SqJA53IXsMbDcoHCWn9j04qVxUJjDSPO X-Received: by 2002:a17:906:46c2:: with SMTP id k2-v6mr942377ejs.7.1542629776018; Mon, 19 Nov 2018 04:16:16 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1542629776; cv=none; d=google.com; s=arc-20160816; b=IqKGXHAjjlETKDUsvPDrqCyy7lEH14vg+EZlf1mH7BbIRGcpqqfhPlDDNBWodSfHJJ EOg8CEVD0e6vopGkBQ2ddFSbsH9MYe452Baj3XEJwWHb6g4TxrO5MgnioB3KKw7+sIfi R1+YcTwmd1kXp84KL3ePgPUwN6rtHJI1rxGa2WNTfVZDIWHYySO4kt3zD3iaObZAkqyn Sf3yy7gIpA6wTSjdjL0CA3IIS4fl9FhivVVr7cCFBdc0quZ4geyl7SbOlVWeF2dDPA2t kwbmEzdbgFsnT+Fu4JO5NGCsVgxQq1RpLevlx9OYyrT6saaP7ElPBoVm101vCCdnfgCY jM5w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=message-id:date:subject:to:from; bh=DMq6GF9bgYHytTBJ9PMsfhOT8nmHhRk1jSguXVYqnLM=; b=E+KoY37o/bt1BAxiThoh29aoeFR7zZ5jqqI1WvAMkyMI62PwgqWbmNWusCLrsB06Xp h8VeFSPiuanNcgxXtsAHrrLw4IVAcM8wu0Qg6lSeaPGpm9ez7o/HoT+JbQSTjxI9mJ74 cSezBIt6YMsqtt7FOBOgEP3TiZ1ywq1l6ymwx2352aG/zcE9fpn2Z8BUGu7QMoQufSQ4 LAMIJYv+lSUL1zxXJedtMxi0N5IAOYcQTMvOTSfjFuD/931CC2L0lnfPpAs9V9Gl3VsR 5xodtMKMLmXO3IZPO9tY1GlmZHdiHouHGGWwBZMcOLB8ohMbBuEGPyKUySLWQUt+3TKz iIPA== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: best guess record for domain of mosipov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=mosipov@ilbers.de Return-Path: Received: from aqmola.ilbers.de (aqmola.ilbers.de. [85.214.62.211]) by gmr-mx.google.com with ESMTPS id k25si107312edd.1.2018.11.19.04.16.15 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 19 Nov 2018 04:16:15 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of mosipov@ilbers.de designates 85.214.62.211 as permitted sender) client-ip=85.214.62.211; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: best guess record for domain of mosipov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=mosipov@ilbers.de Received: from azat.m.ilbers.de (host-80-81-17-52.static.customer.m-online.net [80.81.17.52]) (authenticated bits=0) by aqmola.ilbers.de (8.14.4/8.14.4/Debian-4+deb7u1) with ESMTP id wAJCG554014280 (version=TLSv1/SSLv3 cipher=AES128-SHA256 bits=128 verify=NOT) for ; Mon, 19 Nov 2018 13:16:15 +0100 From: "Maxim Yu. Osipov" To: isar-users@googlegroups.com Subject: [PATCH] conf: Add value 'next' to LAYERSERIES_CORENAMES Date: Mon, 19 Nov 2018 13:16:04 +0100 Message-Id: <20181119121604.28640-1-mosipov@ilbers.de> X-Mailer: git-send-email 2.11.0 X-TUID: W8LyBEdX3PtV If you need to express the fact that your layer requires the layer version higher than existing release corename, use the value 'next'. Signed-off-by: Maxim Yu. Osipov --- RECIPE-API-CHANGELOG.md | 8 ++++++++ meta/conf/layer.conf | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/RECIPE-API-CHANGELOG.md b/RECIPE-API-CHANGELOG.md index af12994..e3bed1b 100644 --- a/RECIPE-API-CHANGELOG.md +++ b/RECIPE-API-CHANGELOG.md @@ -16,6 +16,14 @@ not just packaged as before. - a lot of debhelpers will help .. or complain fix the issues or override the helpers (see example-raw) +### Set LAYERSERIES_COMPAT_* when an own layer is defined + +When defining an own layer LAYERSERIES_COMPAT_mylayer_root_name has to be set, +the possible values are listed in the variable LAYERSERIES_CORENAMES. + +If you need to express the fact that your layer requires the +layer version higher than existing release corename, use the value 'next'. + ### location of image artifacts Align with OpenEmbedded and place image artifacts in a per-machine folder placed diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index ec34d85..a38ab97 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -11,7 +11,7 @@ BBFILE_COLLECTIONS += "core" BBFILE_PATTERN_core = "^${LAYERDIR}/" BBFILE_PRIORITY_core = "5" -LAYERSERIES_CORENAMES = "v0.6" +LAYERSERIES_CORENAMES = "v0.6 next" # This should only be incremented on significant changes that will # cause compatibility issues with other layers -- 2.11.0