diff options
author | Jacob Stiffler <j-stiffler@ti.com> | 2015-11-04 01:47:08 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2015-11-04 09:56:35 -0500 |
commit | 6042df4426cd1aebe3462f34ed82185983ed0449 (patch) | |
tree | 2f64a50b2521743a728148313670d85171d33476 /recipes-bsp/common-csl-ip/common-csl-ip.inc | |
parent | 51cf2fad408c71f78b17441266ccc3b0f24cadf9 (diff) | |
download | meta-ti-6042df4426cd1aebe3462f34ed82185983ed0449.tar.gz |
common-csl-ip: Clean up recipes
* Use INC_PR to track recipe revisions
* 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/common-csl-ip/common-csl-ip.inc')
-rw-r--r-- | recipes-bsp/common-csl-ip/common-csl-ip.inc | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/recipes-bsp/common-csl-ip/common-csl-ip.inc b/recipes-bsp/common-csl-ip/common-csl-ip.inc index 63551658..74abab0c 100644 --- a/recipes-bsp/common-csl-ip/common-csl-ip.inc +++ b/recipes-bsp/common-csl-ip/common-csl-ip.inc | |||
@@ -5,13 +5,22 @@ LIC_FILES_CHKSUM = "file://COPYING.txt;md5=5857833e20836213677fac33f9aded21" | |||
5 | COMPATIBLE_MACHINE = "keystone|dra7xx" | 5 | COMPATIBLE_MACHINE = "keystone|dra7xx" |
6 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 6 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
7 | 7 | ||
8 | BRANCH="master" | 8 | INC_PR = "r4" |
9 | BRANCH_dra7xx = "releases/PROCESSOR-SDK.01.00.00" | ||
10 | 9 | ||
11 | SRC_URI = "git://git.ti.com/keystone-rtos/common-csl-ip.git;protocol=git;branch=${BRANCH};destsuffix=${S}" | 10 | CSL_GIT_URI = "git://git.ti.com/keystone-rtos/common-csl-ip.git" |
11 | CSL_GIT_PROTOCOL ="git" | ||
12 | CSL_GIT_BRANCH = "master" | ||
13 | CSL_GIT_BRANCH_dra7xx = "releases/PROCESSOR-SDK.01.00.00" | ||
14 | CSL_GIT_DESTSUFFIX = "git" | ||
12 | 15 | ||
13 | # commit ID corresponds to DEV.CSL_KEYSTONE2.02.01.01.00A | 16 | # commit ID corresponds to DEV.CSL_KEYSTONE2.02.01.01.00A |
14 | SRCREV = "17bb083f0d5ed4ad6f38c991210a6a8e9aaf9c56" | 17 | CSL_SRCREV = "17bb083f0d5ed4ad6f38c991210a6a8e9aaf9c56" |
15 | 18 | ||
16 | # commit ID corresponds to PROCESSOR-SDK-ALPHA-1 | 19 | # commit ID corresponds to PROCESSOR-SDK-ALPHA-1 |
17 | SRCREV_dra7xx = "37c5311ddf289f83b1432a9422816722d264bf55" | 20 | CSL_SRCREV_dra7xx = "37c5311ddf289f83b1432a9422816722d264bf55" |
21 | |||
22 | BRANCH="${CSL_GIT_BRANCH}" | ||
23 | SRC_URI = "${CSL_GIT_URI};protocol=${CSL_GIT_PROTOCOL};branch=${BRANCH};destsuffix=${CSL_GIT_DESTSUFFIX}" | ||
24 | SRCREV = "${CSL_SRCREV}" | ||
25 | |||
26 | S = "${WORKDIR}/${CSL_GIT_DESTSUFFIX}" | ||