summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/rm-lld
diff options
context:
space:
mode:
authorJacob Stiffler <j-stiffler@ti.com>2015-11-04 01:47:27 +0000
committerDenys Dmytriyenko <denys@ti.com>2015-11-04 10:03:16 -0500
commit36800c7c7c790aa1a637b2810e4e044a41855150 (patch)
tree4f00a91fe3b98681608f90d2330867f71c7857df /recipes-bsp/rm-lld
parentf01c8007f58d268bd0dd2a6b2c8b140b8c11913e (diff)
downloadmeta-ti-36800c7c7c790aa1a637b2810e4e044a41855150.tar.gz
rm-lld: Clean up recipes
* Define variables for GIT SRC_URI parameters Signed-off-by: Jacob Stiffler <j-stiffler@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/rm-lld')
-rw-r--r--recipes-bsp/rm-lld/rm-lld_git.bb16
1 files changed, 12 insertions, 4 deletions
diff --git a/recipes-bsp/rm-lld/rm-lld_git.bb b/recipes-bsp/rm-lld/rm-lld_git.bb
index 8b2806c9..d6cb62b0 100644
--- a/recipes-bsp/rm-lld/rm-lld_git.bb
+++ b/recipes-bsp/rm-lld/rm-lld_git.bb
@@ -2,12 +2,20 @@ DESCRIPTION = "TI Resource Manager Low Level Driver"
2LICENSE = "BSD-3-Clause" 2LICENSE = "BSD-3-Clause"
3LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc" 3LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc"
4 4
5BRANCH="master" 5RM_LLD_GIT_URI = "git://git.ti.com/keystone-rtos/rm-lld.git"
6SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}" 6RM_LLD_GIT_PROTOCOL = "git"
7RM_LLD_GIT_BRANCH = "master"
8RM_LLD_GIT_DESTSUFFIX = "git/ti/drv/rm"
9
7# Below commit ID corresponds to DEV.RM_LLD.02.01.02.00 10# Below commit ID corresponds to DEV.RM_LLD.02.01.02.00
8SRCREV = "b3d711203c6b4cf99fb2f95dc2f4728dfd1b2639" 11RM_LLD_SRCREV = "b3d711203c6b4cf99fb2f95dc2f4728dfd1b2639"
12
13BRANCH = "${RM_LLD_GIT_BRANCH}"
14SRC_URI = "${RM_LLD_GIT_URI};destsuffix=${RM_LLD_GIT_DESTSUFFIX};protocol=${RM_LLD_GIT_PROTOCOL};branch=${BRANCH}"
15SRCREV = "${RM_LLD_SRCREV}"
16
9PV = "02.01.02.00" 17PV = "02.01.02.00"
10PR = "r1" 18PR = "r2"
11 19
12COMPATIBLE_MACHINE = "keystone" 20COMPATIBLE_MACHINE = "keystone"
13 21