diff options
author | Sam Nelson <sam.nelson@ti.com> | 2016-06-21 00:53:29 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2016-06-20 16:56:05 -0400 |
commit | 57c2c15749f87d74cfa62682e86b9e73f6272f21 (patch) | |
tree | 5f778add3181588145ed4d23591d1fb0d4a8b284 /recipes-ti | |
parent | df454f2fe74bd869c8a92ee65ace3e7039347e8a (diff) | |
download | meta-ti-57c2c15749f87d74cfa62682e86b9e73f6272f21.tar.gz |
uio-test-pruss: Add recipe to build uio pruss test firmware
This firmware images are expected to be used with uio pruss test code
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti')
-rw-r--r-- | recipes-ti/uio-test-pruss/uio-test-pruss_git.bb | 23 |
1 files changed, 23 insertions, 0 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 new file mode 100644 index 00000000..ee8204a1 --- /dev/null +++ b/recipes-ti/uio-test-pruss/uio-test-pruss_git.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | DESCRIPTION = "Provides test pruss firmware for uio based tests" | ||
2 | LICENSE = "BSD-3-Clause" | ||
3 | PV = "1.0.0.0" | ||
4 | require recipes-ti/includes/ti-paths.inc | ||
5 | |||
6 | S = "${WORKDIR}/git" | ||
7 | |||
8 | DEPENDS = "ti-cgt-pru-native" | ||
9 | |||
10 | BRANCH = "master" | ||
11 | SRC_URI = "git://git.ti.com/processor-sdk/uio-test-pruss.git;protocol=git;branch=${BRANCH}" | ||
12 | LIC_FILES_CHKSUM = "file://Makefile;startline=1;endline=31;md5=0ee4f2c42eb6b04e37859bb55a18b144" | ||
13 | |||
14 | # Corresponds to version 01.00.00.00 | ||
15 | SRCREV = "f04b91b84331c9a12c897e4eb2836a0a3e3a5fae" | ||
16 | |||
17 | COMPATIBLE_MACHINE = "am57xx" | ||
18 | EXTRA_OEMAKE = "CGT_PRU=${TI_CGT_PRU_INSTALL_DIR}" | ||
19 | |||
20 | do_install() { | ||
21 | install -d ${D}${bindir}/ | ||
22 | cp -r *.bin ${D}${bindir}/ | ||
23 | } | ||