summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGou, Hongmei <h-gou@ti.com>2017-06-27 00:23:05 +0000
committerDenys Dmytriyenko <denys@ti.com>2017-06-26 14:56:06 -0400
commitec17a80bfe0f06c4a9dc9141c67f02474038dc19 (patch)
tree42a16b4cbf876fdfbeaedfde3a721a6f1cc59c49
parentf4e69272256af07b18c036e15034faae5020a7f8 (diff)
downloadmeta-ti-ec17a80bfe0f06c4a9dc9141c67f02474038dc19.tar.gz
uio-test-pruss: version bump to 1.0.1.0 and add support for am3/am4
* Also defined variables for GIT SRC_URI parameters Signed-off-by: Hongmei Gou <h-gou@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r--recipes-ti/uio-test-pruss/uio-test-pruss_git.bb19
1 files changed, 13 insertions, 6 deletions
diff --git a/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb b/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
index a342fe35..724ca077 100644
--- a/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
+++ b/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb
@@ -1,6 +1,6 @@
1DESCRIPTION = "Provides test pruss firmware for uio based tests" 1DESCRIPTION = "Provides test pruss firmware for uio based tests"
2LICENSE = "BSD-3-Clause" 2LICENSE = "BSD-3-Clause"
3PV = "1.0.0.0" 3PV = "1.0.1.0"
4require recipes-ti/includes/ti-paths.inc 4require recipes-ti/includes/ti-paths.inc
5 5
6S = "${WORKDIR}/git" 6S = "${WORKDIR}/git"
@@ -8,20 +8,27 @@ S = "${WORKDIR}/git"
8DEPENDS = "ti-cgt-pru-native" 8DEPENDS = "ti-cgt-pru-native"
9 9
10BRANCH = "master" 10BRANCH = "master"
11SRC_URI = "git://git.ti.com/processor-sdk/uio-test-pruss.git;protocol=git;branch=${BRANCH}"
12LIC_FILES_CHKSUM = "file://Makefile;startline=1;endline=31;md5=0ee4f2c42eb6b04e37859bb55a18b144" 11LIC_FILES_CHKSUM = "file://Makefile;startline=1;endline=31;md5=0ee4f2c42eb6b04e37859bb55a18b144"
13 12
14# Corresponds to version 01.00.00.00A 13UIO_TEST_PRUSS_GIT_URI = "git://git.ti.com/processor-sdk/uio-test-pruss.git"
15SRCREV = "88e78564ff9094ecb13b53d627fa6bfb25d9ac03" 14UIO_TEST_PRUSS_GIT_PROTOCOL = "git"
15SRC_URI = "${UIO_TEST_PRUSS_GIT_URI};protocol=${UIO_TEST_PRUSS_GIT_PROTOCOL};branch=${BRANCH}"
16 16
17PR = "r1" 17# Corresponds to version 01.00.01.00
18UIO_TEST_PRUSS_SRCREV = "72f7454c2460bd7d52dab70631b38bf5d3585542"
18 19
19COMPATIBLE_MACHINE = "omap-a15" 20SRCREV = "${UIO_TEST_PRUSS_SRCREV}"
21
22PR = "r2"
23
24COMPATIBLE_MACHINE = "omap-a15|ti33x|ti43x"
20 25
21PACKAGE_ARCH = "${MACHINE_ARCH}" 26PACKAGE_ARCH = "${MACHINE_ARCH}"
22 27
23DEVICE_NAME = "" 28DEVICE_NAME = ""
24DEVICE_NAME_append_am57xx-evm = "am57xx" 29DEVICE_NAME_append_am57xx-evm = "am57xx"
30DEVICE_NAME_append_ti33x = "am33xx"
31DEVICE_NAME_append_ti43x = "am43xx"
25 32
26EXTRA_OEMAKE = "CGT_PRU=${TI_CGT_PRU_INSTALL_DIR} DEVICE=${DEVICE_NAME}" 33EXTRA_OEMAKE = "CGT_PRU=${TI_CGT_PRU_INSTALL_DIR} DEVICE=${DEVICE_NAME}"
27 34