summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarthik Ramanan <a0393906@ti.com>2014-05-20 01:19:45 +0000
committerDenys Dmytriyenko <denys@ti.com>2014-05-21 15:40:13 -0400
commitd607e15547967195b14a6552060fc163591e23a8 (patch)
tree8a45b76ef0277d6da494393210becd2724e862c7
parent445007a3e3b84bede027d7b35f95a9b4e2750a10 (diff)
downloadmeta-ti-d607e15547967195b14a6552060fc163591e23a8.tar.gz
vis: Add radio application firmware
* Migrated from meta-ti-glsdk and preserved authorship for Karthik * Modified for upstream: * Made PACKAGE_ARCH machine specific * Removed bogus HOMEPAGE setting * Separated the firmware into a ${PN}-fw package and left the ARM side RadioApp in the base package. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r--recipes-ti/vis-fw/vis_01.50.07.15.bb31
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-ti/vis-fw/vis_01.50.07.15.bb b/recipes-ti/vis-fw/vis_01.50.07.15.bb
new file mode 100644
index 00000000..85d85397
--- /dev/null
+++ b/recipes-ti/vis-fw/vis_01.50.07.15.bb
@@ -0,0 +1,31 @@
1DESCRIPTION = "Radio Application Firmware"
2LICENSE = "TI-TSPA"
3LIC_FILES_CHKSUM = "file://${S}/J6_VIS_DEMO_LINUX_BINARY_01.50.07.15-Manifest.html;md5=a59aa54b9470f555cf086b91dca0afa3"
4
5COMPATIBLE_MACHINE = "dra7xx-evm"
6PACKAGE_ARCH = "${MACHINE_ARCH}"
7
8SRC_URI = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/vis/01_50_07_15/exports/vis-${MACHINE}-01.50.07.15.tar.gz;protocol=http"
9
10SRC_URI[md5sum] = "fe8b00e398fb3b7ada0c15b601867acb"
11SRC_URI[sha256sum] = "6e2aa47ae892910616ebdc96646af778af9a59ca0657716ab4fa4b24a9afae69"
12
13S = "${WORKDIR}"
14
15DSPAPP = "dra7-dsp1-fw-radio.xe66"
16GPPAPP = "RadioApp"
17
18do_install() {
19 install -d ${D}${base_libdir}/firmware
20 install -d ${D}${bindir}
21 install ${S}/prebuilt/${DSPAPP} ${D}${base_libdir}/firmware/${DSPAPP}
22 install -m 0755 ${S}/prebuilt/${GPPAPP} ${D}${bindir}/${GPPAPP}
23}
24
25PACKAGES += "${PN}-fw"
26RDEPENDS_${PN} += "${PN}-fw"
27
28FILES_${PN}-fw += "${base_libdir}/firmware/${DSPAPP}"
29
30INSANE_SKIP_${PN}-fw = "arch"
31INHIBIT_PACKAGE_DEBUG_SPLIT = "1"