[meta-ti] Jacob Stiffler : ti-ipc: Extract SRC info into unique variables

Arago Project git git at arago-project.org
Tue Feb 16 12:59:24 PST 2016


Module: meta-ti
Branch: master
Commit: afec0bb2795815436c057d507dd8ec84141ea380
URL:    http://arago-project.org/git/meta-ti.git?a=commit;h=afec0bb2795815436c057d507dd8ec84141ea380

Author: Jacob Stiffler <j-stiffler at ti.com>
Date:   Wed Feb 17 01:05:55 2016 +0000

ti-ipc: Extract SRC info into unique variables

* This makes it easier to override the source revision for all ti-ipc
  recipes

Signed-off-by: Jacob Stiffler <j-stiffler at ti.com>
Signed-off-by: Denys Dmytriyenko <denys at ti.com>

---

 recipes-ti/ipc/ti-ipc.inc |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/recipes-ti/ipc/ti-ipc.inc b/recipes-ti/ipc/ti-ipc.inc
index f3b1bff..a7e1ed9 100644
--- a/recipes-ti/ipc/ti-ipc.inc
+++ b/recipes-ti/ipc/ti-ipc.inc
@@ -4,16 +4,20 @@ HOMEPAGE="http://processors.wiki.ti.com/index.php/Category:IPC"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://${S}/ipc-linux.mak;beginline=1;endline=30;md5=7b327f9b710fd7c95e545b91cec79255"
 
-BRANCH = "ipc-next"
-
-SRC_URI = "git://git.ti.com/ipc/ipcdev.git;protocol=git;branch=${BRANCH}"
+TI_IPC_GIT_URI = "git://git.ti.com/ipc/ipcdev.git"
+TI_IPC_GIT_PROTOCOL = "git"
+TI_IPC_GIT_BRANCH = "ipc-next"
 
 #Corresponds to 3.42.00.00_eng
-SRCREV = "2b47e35ed72170e4e56906fb9ab93dd9ef385a38"
+TI_IPC_SRCREV = "2b47e35ed72170e4e56906fb9ab93dd9ef385a38"
+
+BRANCH = "${TI_IPC_GIT_BRANCH}"
+SRC_URI = "${TI_IPC_GIT_URI};protocol=${TI_IPC_GIT_PROTOCOL};branch=${BRANCH}"
+SRCREV = "${TI_IPC_SRCREV}"
 
 S = "${WORKDIR}/git"
 PV = "3.42.00.00"
-INC_PR = "r0"
+INC_PR = "r1"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 



More information about the meta-ti mailing list