From e4403ea5377d1030594cf946a5b92fe4ee06f859 Mon Sep 17 00:00:00 2001 From: Suman Anna Date: Thu, 22 Oct 2020 06:56:14 +0000 Subject: [PATCH] ipc: ti-rpmsg-char: Add initial recipes Add the initial recipes for building the ti-rpmsg-char package. The library and examples are built using two separate recipes in ti-rpmsg-char_git.bb and ti-rpmsg-char-examples_git.bb. Signed-off-by: Suman Anna Signed-off-by: Gowtham Tammana Signed-off-by: Dan Murphy --- recipes-ti/ipc/ti-rpmsg-char-examples_git.bb | 11 +++++++++++ recipes-ti/ipc/ti-rpmsg-char.inc | 15 +++++++++++++++ recipes-ti/ipc/ti-rpmsg-char_git.bb | 7 +++++++ 3 files changed, 33 insertions(+) create mode 100644 recipes-ti/ipc/ti-rpmsg-char-examples_git.bb create mode 100644 recipes-ti/ipc/ti-rpmsg-char.inc create mode 100644 recipes-ti/ipc/ti-rpmsg-char_git.bb diff --git a/recipes-ti/ipc/ti-rpmsg-char-examples_git.bb b/recipes-ti/ipc/ti-rpmsg-char-examples_git.bb new file mode 100644 index 00000000..142e5bf0 --- /dev/null +++ b/recipes-ti/ipc/ti-rpmsg-char-examples_git.bb @@ -0,0 +1,11 @@ +SUMMARY = "TI RPMsg Char Sample Applications and Tests" + +require ti-rpmsg-char.inc + +DEPENDS = "ti-rpmsg-char" + +inherit autotools pkgconfig + +EXTRA_OEMAKE = "-C ${B}/examples" + +PR = "r0" diff --git a/recipes-ti/ipc/ti-rpmsg-char.inc b/recipes-ti/ipc/ti-rpmsg-char.inc new file mode 100644 index 00000000..b41e68eb --- /dev/null +++ b/recipes-ti/ipc/ti-rpmsg-char.inc @@ -0,0 +1,15 @@ +SUMMARY = "TI RPMsg Char Utility Library" + +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://${S}/src/rpmsg_char.c;beginline=1;endline=31;md5=71987db43a2159cff5ea00505c6fce58" + +PROTOCOL = "git" +BRANCH = "master" +SRC_URI = "git://git.ti.com/rpmsg/ti-rpmsg-char.git;protocol=${PROTOCOL};branch=${BRANCH};" + +# Initial 0.1.0 release +SRCREV = "9be402c2bf4053900b6b9a8092fbb42e7e303108" + +PV = "0.1.0+git${SRCPV}" + +S = "${WORKDIR}/git" diff --git a/recipes-ti/ipc/ti-rpmsg-char_git.bb b/recipes-ti/ipc/ti-rpmsg-char_git.bb new file mode 100644 index 00000000..63711a3b --- /dev/null +++ b/recipes-ti/ipc/ti-rpmsg-char_git.bb @@ -0,0 +1,7 @@ +SUMMARY = "TI RPMsg Char Utility Library" + +require ti-rpmsg-char.inc + +inherit autotools pkgconfig + +PR = "r0"