diff options
author | Denys Dmytriyenko <denys@ti.com> | 2014-06-20 18:10:18 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2014-06-23 17:57:05 -0400 |
commit | 4b79986d032bfd9cc40a7cf832de3e772a1e2e81 (patch) | |
tree | 9f4ec12248929a3cf24325dfbef7fb8948a0cc39 /recipes-bsp/vis-fw | |
parent | 171d3312e50793281d99f06d4248478d5777aa7c (diff) | |
download | meta-ti-4b79986d032bfd9cc40a7cf832de3e772a1e2e81.tar.gz |
recipes: consolidate firmware recipes under recipes-bsp in own directories
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/vis-fw')
-rw-r--r-- | recipes-bsp/vis-fw/vis_01.50.07.15.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-bsp/vis-fw/vis_01.50.07.15.bb b/recipes-bsp/vis-fw/vis_01.50.07.15.bb new file mode 100644 index 00000000..85d85397 --- /dev/null +++ b/recipes-bsp/vis-fw/vis_01.50.07.15.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | DESCRIPTION = "Radio Application Firmware" | ||
2 | LICENSE = "TI-TSPA" | ||
3 | LIC_FILES_CHKSUM = "file://${S}/J6_VIS_DEMO_LINUX_BINARY_01.50.07.15-Manifest.html;md5=a59aa54b9470f555cf086b91dca0afa3" | ||
4 | |||
5 | COMPATIBLE_MACHINE = "dra7xx-evm" | ||
6 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
7 | |||
8 | SRC_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 | |||
10 | SRC_URI[md5sum] = "fe8b00e398fb3b7ada0c15b601867acb" | ||
11 | SRC_URI[sha256sum] = "6e2aa47ae892910616ebdc96646af778af9a59ca0657716ab4fa4b24a9afae69" | ||
12 | |||
13 | S = "${WORKDIR}" | ||
14 | |||
15 | DSPAPP = "dra7-dsp1-fw-radio.xe66" | ||
16 | GPPAPP = "RadioApp" | ||
17 | |||
18 | do_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 | |||
25 | PACKAGES += "${PN}-fw" | ||
26 | RDEPENDS_${PN} += "${PN}-fw" | ||
27 | |||
28 | FILES_${PN}-fw += "${base_libdir}/firmware/${DSPAPP}" | ||
29 | |||
30 | INSANE_SKIP_${PN}-fw = "arch" | ||
31 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" | ||