Skip to content

Commit 098059a

Browse files
committed
Set the defaults to the v2023.10 release
* Add recipes for the v2023.10 release of libmetal and open-amp and use the commit of the v2023.10.0 tag * Lock the Linux examples and utilities to the v2023.10.0 tag * Use the real branch name, not main * fix license md5sum as is done in -dev recipes Signed-off-by: Bill Mills <bill.mills@linaro.org>
1 parent 59ef6be commit 098059a

File tree

3 files changed

+27
-6
lines changed

3 files changed

+27
-6
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SRCREV = "0cb7d293a7f25394a06847a28d0f0ace9862936e"
2+
BRANCH = "v2023.10"
3+
SRCBRANCH ?= "${BRANCH}"
4+
PV = "${SRCBRANCH}+git${SRCPV}"
5+
LIC_FILES_CHKSUM ?= "file://LICENSE.md;md5=f4d5df0f12dcea1b1a0124219c0dbab4"
6+
7+
include libmetal.inc
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SRCREV = "1904dee18da85400e72b8f55c5c99e872a486573"
2+
BRANCH = "v2023.10"
3+
SRCBRANCH ?= "${BRANCH}"
4+
PV = "${SRCBRANCH}+git${SRCPV}"
5+
LIC_FILES_CHKSUM ?= "file://LICENSE.md;md5=ab88daf995c0bd0071c2e1e55f3d3505"
6+
7+
include open-amp.inc

recipes-openamp/rpmsg-examples/rpmsg-example.inc

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,19 @@ LICENSE = "BSD-3-Clause"
55
LIC_FILES_CHKSUM = "file://${WORKDIR}/git/LICENSE.md;md5=0b96a4c07d631aa5141bd3f058ba43b0"
66

77
REPO = "git://github.com/OpenAMP/openamp-system-reference;protocol=https"
8-
BRANCH = "main"
98

10-
# this sets the default SRCREV for all rpmsg examples
11-
# you can set it in local.conf to "${AUTOREV}" to get the tip of main
12-
# This hash is tip of main as of 2023/2/6
13-
OPENAMP_SYS_REF_SRCREV ?= "7f1fb3b84edc1b3eab62a7ade7f88e99f7e78b93"
9+
# this sets the default SRCREV and BRANCH for all rpmsg examples
10+
# if you wish to use the tip of main set the following in local.conf
11+
# OPENAMP_SYS_REF_SRCREV="${AUTOREV}"
12+
# OPENAMP_SYS_REF_BRANCH="main"
13+
#
14+
# These values select the commit tagged by v2023.10.0
15+
OPENAMP_SYS_REF_SRCREV ?= "3716dbba0154259d5efa3fa359313cce69cd163d"
16+
OPENAMP_SYS_REF_BRANCH ?= "v2023.10"
1417

15-
SRC_URI = "${REPO};branch=${BRANCH};"
18+
# This include is used by multiple recipes
19+
# now set the variables for this recipe
20+
BRANCH = "${OPENAMP_SYS_REF_BRANCH}"
1621
SRCREV = "${OPENAMP_SYS_REF_SRCREV}"
22+
23+
SRC_URI = "${REPO};branch=${BRANCH};"

0 commit comments

Comments
 (0)