diff options
author | Jacob Stiffler <j-stiffler@ti.com> | 2015-11-04 01:47:27 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2015-11-04 10:03:16 -0500 |
commit | 36800c7c7c790aa1a637b2810e4e044a41855150 (patch) | |
tree | 4f00a91fe3b98681608f90d2330867f71c7857df | |
parent | f01c8007f58d268bd0dd2a6b2c8b140b8c11913e (diff) | |
download | meta-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>
-rw-r--r-- | recipes-bsp/rm-lld/rm-lld_git.bb | 16 |
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" | |||
2 | LICENSE = "BSD-3-Clause" | 2 | LICENSE = "BSD-3-Clause" |
3 | LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc" | 3 | LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/rm/COPYING.txt;md5=dc61631b65360e6beb73b6c337800afc" |
4 | 4 | ||
5 | BRANCH="master" | 5 | RM_LLD_GIT_URI = "git://git.ti.com/keystone-rtos/rm-lld.git" |
6 | SRC_URI = "git://git.ti.com/keystone-rtos/rm-lld.git;destsuffix=git/ti/drv/rm;protocol=git;branch=${BRANCH}" | 6 | RM_LLD_GIT_PROTOCOL = "git" |
7 | RM_LLD_GIT_BRANCH = "master" | ||
8 | RM_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 |
8 | SRCREV = "b3d711203c6b4cf99fb2f95dc2f4728dfd1b2639" | 11 | RM_LLD_SRCREV = "b3d711203c6b4cf99fb2f95dc2f4728dfd1b2639" |
12 | |||
13 | BRANCH = "${RM_LLD_GIT_BRANCH}" | ||
14 | SRC_URI = "${RM_LLD_GIT_URI};destsuffix=${RM_LLD_GIT_DESTSUFFIX};protocol=${RM_LLD_GIT_PROTOCOL};branch=${BRANCH}" | ||
15 | SRCREV = "${RM_LLD_SRCREV}" | ||
16 | |||
9 | PV = "02.01.02.00" | 17 | PV = "02.01.02.00" |
10 | PR = "r1" | 18 | PR = "r2" |
11 | 19 | ||
12 | COMPATIBLE_MACHINE = "keystone" | 20 | COMPATIBLE_MACHINE = "keystone" |
13 | 21 | ||